File tree 1 file changed +6
-2
lines changed
clickhouse-jdbc/src/test/java/com/clickhouse/jdbc
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1582,8 +1582,12 @@ public void testInsertWithNullDateTime() throws SQLException {
1582
1582
@ Test (groups = "integration" )
1583
1583
public void testInsertWithSettings () throws SQLException {
1584
1584
Properties props = new Properties ();
1585
- try (ClickHouseConnection conn = newConnection (props );
1586
- Statement s = conn .createStatement ()) {
1585
+ try (ClickHouseConnection conn = newConnection (props ); Statement s = conn .createStatement ()) {
1586
+ if (!conn .getServerVersion ().check ("[22.5,)" )) {
1587
+ throw new SkipException (
1588
+ "Skip due to breaking change introduced by https://github.com/ClickHouse/ClickHouse/pull/35883" );
1589
+ }
1590
+
1587
1591
s .execute ("drop table if exists test_insert_with_settings; "
1588
1592
+ "CREATE TABLE test_insert_with_settings(i Int32, s String) ENGINE=Memory" );
1589
1593
try (PreparedStatement ps = conn
You can’t perform that action at this time.
0 commit comments