-
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: Wrong folding of =
expression and AND
#35859
Labels
:Analytics/SQL
SQL querying
>bug
Team:Analytics
Meta label for analytical engine team (ESQL/Aggs/Geo)
Comments
Pinging @elastic/es-search |
@elastic/es-ql |
elasticsearchmachine
added
the
Team:Analytics
Meta label for analytical engine team (ESQL/Aggs/Geo)
label
Jan 17, 2024
Pinging @elastic/es-analytical-engine (Team:Analytics) |
FWIW, this improved partially (
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
:Analytics/SQL
SQL querying
>bug
Team:Analytics
Meta label for analytical engine team (ESQL/Aggs/Geo)
SELECT languages = 10 AND languages = 11 FROM test_emp where emp_no IN(10018, 10019, 10020, 10021);
returns:
as the AND expression is wrongly folded to false (can also be
null
) and on top it becomes aLocalRelation
.The text was updated successfully, but these errors were encountered: