[BUG] Poor handling of boolean expressions in WHERE clauses #3266
Labels
bug
Something isn't working
calcite
calcite migration releated
dynamic-test
Issues found by or related to Dynamic Testing
SQL
What is the bug?
This is a bug for three related issues around booleans in WHERE clauses. I suspect without proof that they all have a similar root cause. All examples here use the ecommerce dataset as an example index, but should be reproducible with any index.
How can one reproduce the bug?
WHERE FALSE
matches all records.Query:
Result:
WHERE NOT(x)
causes an error for any constant boolean.Query:
Result:
The same happens with
WHERE NOT(TRUE)
,WHERE NOT(NOT(FALSE))
,WHERE NOT(FALSE OR TRUE)
, and similar.NOT(NULL)
.Query:
Result:
NOT(NULL)
is equivalent toNULL
, so this whole expression should be equivalent toWHERE NULL
and return no records1.What is the expected behavior?
These expressions should be correctly evaluated and applied. They're somewhat weird examples for human-written queries, but automatic query builders may produce queries like this, especially for
WHERE FALSE
.What is your host/environment?
Do you have any screenshots?
N/A
Do you have any additional context?
Found by the WIP distributed-testing suite. See: #3220
Footnotes
It's worth noting that SQL really uses ternary logic: NULL lives among the typical boolean values and the 3 values generate their own truth tables. This is (for better or for worse) pretty fundamental to SQL's operation and is the principle that TLP is built on. As such, in boolean handling, we should really treat NULL as a bona fide boolean. ↩
The text was updated successfully, but these errors were encountered: