Skip to content

Commit 1513b27

Browse files
authored
Merge pull request #1293 from zhicwu/main
Only throw BatchUpdateException for statements for read
2 parents 420679f + cbc9e06 commit 1513b27

File tree

6 files changed

+46
-4
lines changed

6 files changed

+46
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* transaction failure introduced 0.4.0.
1818
* respect node-specific credentials. [#1114](https://github.com/ClickHouse/clickhouse-java/issues/1114)
1919
* USE statement does nothing. [#1160](https://github.com/ClickHouse/clickhouse-java/issues/1160)
20+
* executeBatch does not support on cluster anymore. [#1261](https://github.com/ClickHouse/clickhouse-java/issues/1261)
2021

2122
## 0.4.1, 2023-02-19
2223
### Breaking Changes

clickhouse-jdbc/src/main/java/com/clickhouse/jdbc/internal/ClickHouseStatementImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ public long[] executeLargeBatch() throws SQLException {
772772
int i = 0;
773773
for (ClickHouseSqlStatement s : batchStmts) {
774774
try (ClickHouseResponse r = executeStatement(s, null, null, null); ResultSet rs = updateResult(s, r)) {
775-
if (rs != null) {
775+
if (rs != null && s.isQuery()) {
776776
throw SqlExceptionUtils.queryInBatchError(results);
777777
}
778778
results[i] = currentUpdateCount <= 0L ? 0L : currentUpdateCount;

clickhouse-jdbc/src/main/java/com/clickhouse/jdbc/internal/SqlBasedPreparedStatement.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ protected long[] executeAny(boolean asBatch) throws SQLException {
161161
long rows = 0L;
162162
try {
163163
r = executeStatement(builder.toString(), reparse);
164-
if (updateResult(parsedStmt, r) != null && asBatch) {
164+
if (updateResult(parsedStmt, r) != null && asBatch && parsedStmt.isQuery()) {
165165
throw SqlExceptionUtils.queryInBatchError(results);
166166
}
167167
rows = r.getSummary().getWrittenRows();
@@ -208,7 +208,7 @@ protected long[] executeAny(boolean asBatch) throws SQLException {
208208
preparedQuery.apply(builder, params);
209209
try {
210210
r = executeStatement(builder.toString(), reparse);
211-
if (updateResult(parsedStmt, r) != null && asBatch) {
211+
if (updateResult(parsedStmt, r) != null && asBatch && parsedStmt.isQuery()) {
212212
throw SqlExceptionUtils.queryInBatchError(results);
213213
}
214214
int count = getUpdateCount();

clickhouse-jdbc/src/main/java/com/clickhouse/jdbc/internal/TableBasedPreparedStatement.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public long[] executeAny(boolean asBatch) throws SQLException {
101101
for (List<ClickHouseExternalTable> list : batch) {
102102
try (ClickHouseResponse r = executeStatement(sql, null, list, null);
103103
ResultSet rs = updateResult(parsedStmt, r)) {
104-
if (asBatch && rs != null) {
104+
if (asBatch && rs != null && parsedStmt.isQuery()) {
105105
throw SqlExceptionUtils.queryInBatchError(results);
106106
}
107107
long rows = getLargeUpdateCount();

clickhouse-jdbc/src/test/java/com/clickhouse/jdbc/ClickHousePreparedStatementTest.java

+21
Original file line numberDiff line numberDiff line change
@@ -694,6 +694,27 @@ public void testInsertQueryDateTime64() throws SQLException {
694694
}
695695
}
696696

697+
@Test(groups = "integration")
698+
public void testBatchDdl() throws SQLException {
699+
Properties props = new Properties();
700+
try (ClickHouseConnection conn = newConnection(props)) {
701+
if (!conn.getServerVersion().check("[22.8,)")) {
702+
throw new SkipException("Skip due to error 'unknown key zookeeper_load_balancing'");
703+
}
704+
try (PreparedStatement stmt = conn.prepareStatement(
705+
"drop table if exists test_batch_dll_on_cluster on cluster test_shard_localhost")) {
706+
stmt.addBatch();
707+
stmt.addBatch();
708+
Assert.assertEquals(stmt.executeBatch(), new int[] { 0, 0 });
709+
}
710+
711+
try (PreparedStatement stmt = conn.prepareStatement("select 1")) {
712+
stmt.addBatch();
713+
Assert.assertThrows(BatchUpdateException.class, () -> stmt.executeBatch());
714+
}
715+
}
716+
}
717+
697718
@Test(groups = "integration")
698719
public void testBatchInsert() throws SQLException {
699720
try (ClickHouseConnection conn = newConnection(new Properties());

clickhouse-jdbc/src/test/java/com/clickhouse/jdbc/ClickHouseStatementTest.java

+20
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,26 @@ private Object[][] getConnectionProperties() {
6868
new Object[] { emptyProps }, new Object[] { sessionProps } };
6969
}
7070

71+
@Test(groups = "integration")
72+
public void testBatchUpdate() throws SQLException {
73+
Properties props = new Properties();
74+
try (ClickHouseConnection conn = newConnection(props); ClickHouseStatement stmt = conn.createStatement()) {
75+
if (!conn.getServerVersion().check("[22.8,)")) {
76+
throw new SkipException("Skip due to error 'unknown key zookeeper_load_balancing'");
77+
}
78+
79+
stmt.addBatch("drop table if exists test_batch_dll_on_cluster on cluster test_shard_localhost");
80+
stmt.addBatch(
81+
"create table if not exists test_batch_dll_on_cluster on cluster test_shard_localhost(a Int64) Engine=MergeTree order by a;"
82+
+ "drop table if exists test_batch_dll_on_cluster on cluster test_shard_localhost;");
83+
Assert.assertEquals(stmt.executeBatch(), new int[] { 0, 0, 0 });
84+
85+
stmt.addBatch("drop table if exists test_batch_queries");
86+
stmt.addBatch("select 1");
87+
Assert.assertThrows(BatchUpdateException.class, () -> stmt.executeBatch());
88+
}
89+
}
90+
7191
@Test(groups = "integration")
7292
public void testBitmap64() throws SQLException {
7393
Properties props = new Properties();

0 commit comments

Comments
 (0)