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 cdd350d commit 72e0d71Copy full SHA for 72e0d71
jdbc-v2/src/test/java/com/clickhouse/jdbc/StatementTest.java
@@ -322,7 +322,7 @@ public void testExecuteQueryTimeout() throws Exception {
322
try (Statement stmt = conn.createStatement()) {
323
stmt.setQueryTimeout(1);
324
assertThrows(SQLException.class, () -> {
325
- try (ResultSet rs = stmt.executeQuery("SELECT sleep(2)")) {
+ try (ResultSet rs = stmt.executeQuery("SELECT sleep(5)")) {
326
assertFalse(rs.next());
327
}
328
});
0 commit comments