We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see couple of equal methods are missing. But the following is a bug:
equal
diff --git a/src/main/java/com/google/cloud/solutions/spannerddl/parser/ASTcreate_search_index_statement.java b/src/main/java/com/google/cloud/solutions/spannerddl/parser/ASTcreate_search_index_statement.java index 8e10e35..24ce51b 100644 --- a/src/main/java/com/google/cloud/solutions/spannerddl/parser/ASTcreate_search_index_statement.java +++ b/src/main/java/com/google/cloud/solutions/spannerddl/parser/ASTcreate_search_index_statement.java @@ -99,7 +99,7 @@ public class ASTcreate_search_index_statement extends SimpleNode @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;
The text was updated successfully, but these errors were encountered:
fix: create_search_index_statement equals
9fdf477
Fixes cloudspannerecosystem#111
fix: create_search_index_statement equals (#114)
6ea341e
Fixes #111
Successfully merging a pull request may close this issue.
I see couple of
equal
methods are missing. But the following is a bug:The text was updated successfully, but these errors were encountered: