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 37df6a4 commit fbac81eCopy full SHA for fbac81e
jdbc-v2/src/main/java/com/clickhouse/data/Tuple.java
@@ -46,6 +46,9 @@ public boolean equals(Object obj) {
46
if (this == obj) {
47
return true;
48
}
49
+ if (obj == null) {
50
+ return false;
51
+ }
52
if (obj instanceof Tuple) {
53
Tuple other = (Tuple) obj;
54
return Arrays.equals(values, other.values);
0 commit comments