String sqlStr="insert into tab1 values (1, 'a'), (2, 'b);";
int ret = stmt.executeUpdate(sqlStr);
"ret" is always equal to one, it should return 2 for the above example. The same statement returns correct result in "clickhouse-client", that is, "2 rows in set. Elapsed: 0.023 sec."