Skip to content

Commit 6f82de2

Browse files
committed
Fix table not found error
1 parent b904a6b commit 6f82de2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clickhouse-client/src/test/java/com/clickhouse/client/ClientIntegrationTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,11 @@ public void testOpenCloseClient() throws Exception {
205205

206206
@Test(dataProvider = "compressionMatrix", groups = { "integration" })
207207
public void testCompression(ClickHouseFormat format, ClickHouseBufferingMode bufferingMode,
208-
boolean compressRequest, boolean compressResponse) throws ClickHouseException {
208+
boolean compressRequest, boolean compressResponse) throws Exception {
209209
ClickHouseNode server = getServer();
210210
String uuid = UUID.randomUUID().toString();
211-
ClickHouseClient.send(server, "create table if not exists test_compress_decompress(id UUID)engine=Memory");
211+
ClickHouseClient.send(server, "create table if not exists test_compress_decompress(id UUID)engine=Memory")
212+
.get();
212213
try (ClickHouseClient client = getClient()) {
213214
ClickHouseRequest<?> request = client.connect(server)
214215
.format(format)

0 commit comments

Comments
 (0)