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