Skip to content

Commit

Permalink
Merge pull request #1849 from ClickHouse/fix_info_log
Browse files Browse the repository at this point in the history
[client-v2] remove info log for end of stream
  • Loading branch information
chernser authored Oct 2, 2024
2 parents e48deeb + 7e3c531 commit a499238
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ public <T> T readValue(ClickHouseColumn column, Class<?> typeHint) throws IOExce
throw new IllegalArgumentException("Unsupported data type: " + column.getDataType());
}
} catch (EOFException e) {
log.info("End of stream reached before reading all data for column " + column.getColumnName());
throw e;
} catch (Exception e) {
throw new ClientException("Failed to read value for column " + column.getColumnName(), e);
Expand Down

0 comments on commit a499238

Please sign in to comment.