for every (col) == (col),
transform to IsNotNull(col)
since in the boolean context, null = (...) will always
be treated as false.
note: as always, only for single column.
boolean_constant_fold_and takes the left hand side and right hands side of a Type::And
operator. It is required that the the lhs should always be a constant.
boolean_constant_fold_or takes the left hand side and right hands side of a Type::Or
operator. It is required that the the lhs should always be a constant.
Transform a bool expression to Conjunctive form. e.g. given expression is
(expr1 AND expr2 AND expr3) the function will return Vec[expr1, expr2, expr3].
Try to get bool constant from a ExprImpl.
If expr is not a ExprImpl::Literal, or the Literal is not a boolean, this function will
return None. Otherwise it will return the boolean value.