File tree 1 file changed +3
-2
lines changed
clickhouse-client/src/test/java/com/clickhouse/client 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -205,10 +205,11 @@ public void testOpenCloseClient() throws Exception {
205
205
206
206
@ Test (dataProvider = "compressionMatrix" , groups = { "integration" })
207
207
public void testCompression (ClickHouseFormat format , ClickHouseBufferingMode bufferingMode ,
208
- boolean compressRequest , boolean compressResponse ) throws ClickHouseException {
208
+ boolean compressRequest , boolean compressResponse ) throws Exception {
209
209
ClickHouseNode server = getServer ();
210
210
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 ();
212
213
try (ClickHouseClient client = getClient ()) {
213
214
ClickHouseRequest <?> request = client .connect (server )
214
215
.format (format )
You can’t perform that action at this time.
0 commit comments