Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Expressions like: not ((a>0) is not true) could be rewritten to (a>0) is true.
However currently this doesn't happen because some of these functions are not translated for Calcite.
create table t (a integer); explain select not ((a>0) is not true) from t group by a; [...] expressions: (not (_col0 > 0) is not true) (type: boolean) | [...]