This type inference is just to infer the return type of function calls, and make sure the
functionCall expressions have same input type requirement and return type definition as backend.
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.
A window function performs a calculation across a set of table rows that are somehow related to
the current row, according to the window spec OVER (PARTITION BY .. ORDER BY ..).
One output row is calculated for each row in the input table.
The context a cast operation is invoked in. An implicit cast operation is allowed in a context
that allows explicit casts, but not vice versa. See details in
PG.
By default, ExprRewriter simply traverses the expression tree and leaves nodes unchanged.
Implementations can override a subset of methods and perform transformation on some particular
types of expression.
From all available functions in sig_map, find and return the best matching FuncSign for the
provided func_name and inputs. This not only support exact function signature match, but can
also match substr(varchar, smallint) or even substr(varchar, unknown) to substr(varchar, int).
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.