Expand description
Rewrite for order by expressions
Functionsยง
- expr_
match ๐ - Does the underlying expr match e? so avg(c) as average will match avgc
- rewrite_
in_ ๐terms_ of_ projection - Rewrites a sort expression in terms of the output of the previous
LogicalPlan - rewrite_
sort_ ๐col_ by_ aggs - rewrite_
sort_ cols_ by_ aggs - Rewrite sort on aggregate expressions to sort on the column of aggregate output
For example,
max(x)is written tocol("max(x)")