Skip to content

Commit 10e0cd3

Browse files
committed
Added compressed stream unwrapping.
1 parent d9529f5 commit 10e0cd3

3 files changed

Lines changed: 2799 additions & 2789 deletions

File tree

client-v2/src/main/java/com/clickhouse/client/api/data_formats/internal/AbstractBinaryFormatReader.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import com.clickhouse.client.api.ClientConfigProperties;
44
import com.clickhouse.client.api.ClientException;
5-
import com.clickhouse.client.api.DataTransferException;
65
import com.clickhouse.client.api.DataTypeUtils;
76
import com.clickhouse.client.api.data_formats.ClickHouseBinaryFormatReader;
87
import com.clickhouse.client.api.internal.DataTypeConverter;
@@ -257,7 +256,7 @@ private String recordReadExceptionMsg() {
257256

258257
private String recordReadExceptionMsg(String column) {
259258
return "Reading " + (column != null ? "column " + column + " in " : "")
260-
+ " row " + row + " (time since last next call " + timeSinceLastNext() + ")";
259+
+ " row " + (row + 1) + " (time since last next call " + timeSinceLastNext() + ")";
261260
}
262261

263262
@Override

0 commit comments

Comments
 (0)