Skip to content

Commit 379c713

Browse files
committed
pgjdbc: Skip test about getDefaultTransactionIsolation()
Starting with version 42.7.0, the driver issues a query statement like SELECT * FROM pg_catalog.pg_settings WHERE name=default_transaction_isolation This is not supported by CrateDB.
1 parent c84f9c9 commit 379c713

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

by-language/java-qa/src/test/java/io/crate/qa/JdbcMetaDataTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,8 @@ public void test_getDatabaseProductVersion() throws Exception {
191191
}
192192

193193
@Test
194+
@Ignore("Not supported by CrateDB after pgjdbc 42.7.0 changed the implementation")
195+
// https://github.com/crate/crate/issues/15113
194196
public void test_getDefaultTransactionIsolation() throws Exception {
195197
try (var conn = DriverManager.getConnection(URL)) {
196198
assertThat(conn.getMetaData().getDefaultTransactionIsolation(), is(Connection.TRANSACTION_READ_COMMITTED));

0 commit comments

Comments
 (0)