-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
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
SQL: Equality should use == instead of = #31796
Labels
Comments
Pinging @elastic/es-search-aggs |
costin
added a commit
to costin/elasticsearch
that referenced
this issue
Jul 5, 2018
Fix bug that causes `HAVING a = b` to be translated ad-litteram in Painless which uses `==` for equality checks not `=`. Close elastic#31796
costin
added a commit
that referenced
this issue
Jul 6, 2018
Fix bug that causes `HAVING a = b` to be translated ad-litteram in Painless which uses `==` for equality checks not `=`. Close #31796
costin
added a commit
that referenced
this issue
Jul 6, 2018
costin
added a commit
that referenced
this issue
Jul 6, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SQL has
=
as valid symbol for equality, but Painless scripts use==
. Currently, ES SQL uses=
for Painless scripting which is incorrect.The text was updated successfully, but these errors were encountered: