We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ebf142 commit 69aff24Copy full SHA for 69aff24
1 file changed
h2/src/main/org/h2/value/ValueVarcharIgnoreCase.java
@@ -37,8 +37,8 @@ public int compareTypeSafe(Value v, CompareMode mode, CastDataProvider provider)
37
38
@Override
39
public boolean equals(Object other) {
40
- return other instanceof ValueVarchar
41
- && value.equalsIgnoreCase(((ValueVarchar) other).value);
+ return other instanceof ValueVarcharIgnoreCase
+ && value.equalsIgnoreCase(((ValueVarcharIgnoreCase) other).value);
42
}
43
44
0 commit comments