This is an automated email from the ASF dual-hosted git repository.
reschke pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to refs/heads/trunk by this push:
new b88dee1cb8 OAK-10565: 1st instance of RDB store should drop tables
b88dee1cb8 is described below
commit b88dee1cb8e85ce521473906137a35e74e8204a6
Author: Julian Reschke <[email protected]>
AuthorDate: Mon Nov 27 11:55:10 2023 +0100
OAK-10565: 1st instance of RDB store should drop tables
---
.../jackrabbit/oak/plugins/document/VersionGarbageCollectorIT.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/VersionGarbageCollectorIT.java
b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/VersionGarbageCollectorIT.java
index c0c20ea704..c295069bc6 100644
---
a/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/VersionGarbageCollectorIT.java
+++
b/oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/VersionGarbageCollectorIT.java
@@ -150,7 +150,7 @@ public class VersionGarbageCollectorIT {
private void createPrimaryStore() {
if (fixture instanceof RDBFixture) {
((RDBFixture) fixture).setRDBOptions(
- new
RDBOptions().tablePrefix(rdbTablePrefix).dropTablesOnClose(false));
+ new
RDBOptions().tablePrefix(rdbTablePrefix).dropTablesOnClose(true));
}
ds1 = fixture.createDocumentStore();
documentMKBuilder = new
DocumentMK.Builder().clock(clock).setClusterId(1)