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 7a45dae commit 549276cCopy full SHA for 549276c
client-v2/src/main/java/com/clickhouse/client/api/data_formats/internal/BinaryStreamReader.java
@@ -148,7 +148,7 @@ private <T> T readValueImpl(ClickHouseColumn column) throws IOException {
148
case IntervalNanosecond:
149
return (T) readBigIntegerLE(input, 8, true);
150
case IPv4:
151
- https://clickhouse.com/docs/en/sql-reference/data-types/ipv4
+ // https://clickhouse.com/docs/en/sql-reference/data-types/ipv4
152
return (T) Inet4Address.getByAddress(readNBytesLE(input, 4));
153
case IPv6:
154
// https://clickhouse.com/docs/en/sql-reference/data-types/ipv6
0 commit comments