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 942a2c8 commit af9e682Copy full SHA for af9e682
jdbc-v2/src/test/java/com/clickhouse/jdbc/PreparedStatementTest.java
@@ -360,6 +360,10 @@ void testMultipleWithClauses() throws Exception {
360
361
@Test(groups = { "integration" })
362
void testRecursiveWithClause() throws Exception {
363
+ if (ClickHouseVersion.of(getServerVersion()).check("(,24.3]")) {
364
+ return; // recursive CTEs were introduces in 24.4
365
+ }
366
+
367
try (Connection conn = getJdbcConnection();
368
PreparedStatement stmt = conn.prepareStatement(
369
"WITH RECURSIVE numbers AS (" +
0 commit comments