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 e9ef623 commit 6d2feaaCopy full SHA for 6d2feaa
examples/client-v2/src/main/java/com/clickhouse/examples/client_v2/SimpleReader.java
@@ -59,7 +59,8 @@ public void readDataUsingBinaryFormat() {
59
try (QueryResponse response = client.query(sql).get(3, TimeUnit.SECONDS);) {
60
61
// Create a reader to access the data in a convenient way
62
- ClickHouseBinaryFormatReader reader = new RowBinaryWithNamesAndTypesFormatReader(response.getInputStream());
+ ClickHouseBinaryFormatReader reader = new RowBinaryWithNamesAndTypesFormatReader(response.getInputStream(),
63
+ response.getSettings());
64
65
while (reader.hasNext()) {
66
reader.next(); // Read the next record from stream and parse it
0 commit comments