Support boolean == boolean
and boolean != boolean
operators
#1159
Labels
boolean == boolean
and boolean != boolean
operators
#1159
Describe the bug
I found this while working on #1153
Trying to do a boolean operation with eq or != results in an error such as:
To Reproduce
Then run SQL:
Expected behavior
Expect the query to run and the a result of two columns of false values
Additional context
The reason it is a problem for constant folding, is that there is special case code to handle constant
true != false
type expressions but it doesn't work with the general purpose constant evaluator.The text was updated successfully, but these errors were encountered: