Test Details
Query
MATCH (n) WHERE NOT TRUE RETURN NOT FALSE
Fails because predicates without dependencies is not supported. This should be okay to implement, we just need to add an ExprEval before the filter, and if there are no dependencies the condition is "constexpr" and evaluates to the same result for all input rows. But we need to think about how to place it
Test Details
where-not-true-return-not-falseQuery
Fails because predicates without dependencies is not supported. This should be okay to implement, we just need to add an ExprEval before the filter, and if there are no dependencies the condition is "constexpr" and evaluates to the same result for all input rows. But we need to think about how to place it