Skip to content

Commit

Permalink
fix: equals ASTcheck_constraint (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
gurminder71 authored Oct 22, 2024
1 parent 2444b46 commit fec08aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public String toString() {

@Override
public boolean equals(Object other) {
if (other instanceof ASTcolumn_def) {
if (other instanceof ASTcheck_constraint) {
return this.toString().equals(other.toString());
}
return false;
Expand Down

0 comments on commit fec08aa

Please sign in to comment.