We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d528bd commit 6b825ffCopy full SHA for 6b825ff
driver/src/test/java/oracle/nosql/driver/OnPremiseTest.java
@@ -576,7 +576,12 @@ public void testDefaultNamespaces()
576
/* test ListTables with no namespace: should return all */
577
listTables = new ListTablesRequest();
578
lres = handle.listTables(listTables);
579
- assertTrue(lres.getTables().length > 2);
+ /* 23.3.19 upwards should return just the tables in the def namespace */
580
+ if (checkKVVersion(23, 3, 18)) {
581
+ assertTrue(lres.getTables().length == 2);
582
+ } else {
583
+ assertTrue(lres.getTables().length > 2);
584
+ }
585
586
/* test ListTables with explicit namespace */
587
listTables = new ListTablesRequest().setNamespace("mydns");
0 commit comments