Skip to content

Commit 549276c

Browse files
committed
make comment not a label
1 parent 7a45dae commit 549276c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ private <T> T readValueImpl(ClickHouseColumn column) throws IOException {
148148
case IntervalNanosecond:
149149
return (T) readBigIntegerLE(input, 8, true);
150150
case IPv4:
151-
https://clickhouse.com/docs/en/sql-reference/data-types/ipv4
151+
// https://clickhouse.com/docs/en/sql-reference/data-types/ipv4
152152
return (T) Inet4Address.getByAddress(readNBytesLE(input, 4));
153153
case IPv6:
154154
// https://clickhouse.com/docs/en/sql-reference/data-types/ipv6

0 commit comments

Comments
 (0)