We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d04767 commit 3043a73Copy full SHA for 3043a73
clickhouse-grpc-client/src/test/java/com/clickhouse/client/grpc/ClickHouseGrpcClientTest.java
@@ -33,7 +33,7 @@ protected Object[][] getRequestCompressionMatrix() {
33
{ ClickHouseCompression.BZ2, -2, 2, 1 },
34
{ ClickHouseCompression.DEFLATE, -2, 10, 1 }, // [0, 9]
35
{ ClickHouseCompression.GZIP, -2, 10, 1 }, // [-1, 9]
36
- { ClickHouseCompression.LZ4, -2, 19, 1 }, // [0, 18]
+ // { ClickHouseCompression.LZ4, -2, 19, 1 }, // [0, 18] TOO SLOW!
37
// Code: 638, DB::Exception: hadoop snappy decode error:INVALID_INPUT: While
38
// executing BinaryRowInputFormat
39
// { ClickHouseCompression.SNAPPY, -2, 513, 1024 }, // [1 * 1024, 32 * 1024]
@@ -88,6 +88,7 @@ protected Class<? extends ClickHouseClient> getClientClass() {
88
89
@Test(groups = { "integration" })
90
public void testNothing() throws Exception {
91
+ testDumpFile(true, true);
92
}
93
94
@Test(groups = "integration")
0 commit comments