-
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: Improve optimization of binary comparisons and equal #49637
Labels
Comments
Pinging @elastic/es-search (:Search/SQL) |
Also inequality - |
++ |
Hi @costin! If I got it right this optimization is to implement another static class in |
This was referenced Jan 7, 2020
This was referenced Feb 3, 2020
This was referenced Apr 1, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Teach optimizer to handle equality and a comparison:
a = 2 AND a > 1
->a=2
but alsoa = 2 AND a > 3
->FALSE
The text was updated successfully, but these errors were encountered: