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
Currently written as
protected boolean doEquals(TermsSetQueryBuilder other) { return Objects.equals(fieldName, this.fieldName) && Objects.equals(values, this.values) && Objects.equals(minimumShouldMatchField, this.minimumShouldMatchField) && Objects.equals(minimumShouldMatchScript, this.minimumShouldMatchScript); }
should be
protected boolean doEquals(TermsSetQueryBuilder other) { return Objects.equals(fieldName, other.fieldName) && Objects.equals(values, other.values) && Objects.equals(minimumShouldMatchField, other.minimumShouldMatchField) && Objects.equals(minimumShouldMatchScript, other.minimumShouldMatchScript); }
The text was updated successfully, but these errors were encountered:
Thanks @twilson-palantir, I created #29629
Sorry, something went wrong.
Pinging @elastic/es-search-aggs
Fix TermsSetQueryBuilder.doEquals() method
9f82709
Closes elastic#29620
Fix TermsSetQueryBuilder.doEquals() method (#29629)
e864b93
Closes #29620
ee89312
e954938
No branches or pull requests
Currently written as
should be
The text was updated successfully, but these errors were encountered: