mirror of https://github.com/tikv/client-java.git
parent
6efa139d77
commit
571a47c4f7
|
@ -123,9 +123,9 @@ public class ColumnRef extends Expression {
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
if (isResolved()) {
|
if (isResolved()) {
|
||||||
return Objects.hash(this.name, this.dataType);
|
return Objects.hash(this.name.toLowerCase(), this.dataType);
|
||||||
} else {
|
} else {
|
||||||
return Objects.hashCode(name);
|
return Objects.hashCode(name.toLowerCase());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue