Skip to content

Commit 3043a73

Browse files
committed
Disable lz4 test for gRPC because it's too slow
1 parent 0d04767 commit 3043a73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clickhouse-grpc-client/src/test/java/com/clickhouse/client/grpc/ClickHouseGrpcClientTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected Object[][] getRequestCompressionMatrix() {
3333
{ ClickHouseCompression.BZ2, -2, 2, 1 },
3434
{ ClickHouseCompression.DEFLATE, -2, 10, 1 }, // [0, 9]
3535
{ ClickHouseCompression.GZIP, -2, 10, 1 }, // [-1, 9]
36-
{ ClickHouseCompression.LZ4, -2, 19, 1 }, // [0, 18]
36+
// { ClickHouseCompression.LZ4, -2, 19, 1 }, // [0, 18] TOO SLOW!
3737
// Code: 638, DB::Exception: hadoop snappy decode error:INVALID_INPUT: While
3838
// executing BinaryRowInputFormat
3939
// { ClickHouseCompression.SNAPPY, -2, 513, 1024 }, // [1 * 1024, 32 * 1024]
@@ -88,6 +88,7 @@ protected Class<? extends ClickHouseClient> getClientClass() {
8888

8989
@Test(groups = { "integration" })
9090
public void testNothing() throws Exception {
91+
testDumpFile(true, true);
9192
}
9293

9394
@Test(groups = "integration")

0 commit comments

Comments
 (0)