This is an automated email from the ASF dual-hosted git repository.
reschke pushed a commit to branch OAK-10565
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to refs/heads/OAK-10565 by this push:
new f0a07f247e OAK-10565: 1st instance of RDB store should drop tables
f0a07f247e is described below
commit f0a07f247ef9088e401299aa1ee49be36b8179b7
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)