Skip to content

Commit a499238

Browse files
authored
Merge pull request #1849 from ClickHouse/fix_info_log
[client-v2] remove info log for end of stream
2 parents e48deeb + 7e3c531 commit a499238

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,6 @@ public <T> T readValue(ClickHouseColumn column, Class<?> typeHint) throws IOExce
221221
throw new IllegalArgumentException("Unsupported data type: " + column.getDataType());
222222
}
223223
} catch (EOFException e) {
224-
log.info("End of stream reached before reading all data for column " + column.getColumnName());
225224
throw e;
226225
} catch (Exception e) {
227226
throw new ClientException("Failed to read value for column " + column.getColumnName(), e);

0 commit comments

Comments
 (0)