use of com.apple.foundationdb.record.provider.foundationdb.layers.interning.ScopedInterningLayer in project fdb-record-layer by FoundationDB.
the class InterningLayerToInterningLayerReplicaTest method setup.
@BeforeEach
public void setup() {
try (FDBRecordContext context = database.openContext()) {
primary = new ScopedInterningLayer(database, keySpace.path("test-path").add("to").add("primary").toResolvedPath(context));
replica = new ScopedInterningLayer(database, keySpace.path("test-path").add("to").add("replica").toResolvedPath(context));
}
seedWithMetadata = true;
}
Aggregations