Skip to content

Commit

Permalink
fix: create_search_index_statement equals (#114)
Browse files Browse the repository at this point in the history
Fixes #111
  • Loading branch information
nielm authored May 27, 2024
1 parent 0fbc5db commit 6ea341e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public int compareTo(ASTcreate_search_index_statement other) {

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

0 comments on commit 6ea341e

Please sign in to comment.