Expand description
Datafusion optimizer for flow plan
Structsยง
- AvgExpand
Rule ๐ - Check
Group ๐ByRule This rule check all group by exprs, and make sure they are also in select clause in a aggr query - Expand
AvgRewriter ๐rewriteavg(<expr>)
function intoCASE WHEN count(<expr>) !=0 THEN cast(sum((<expr>) AS avg_return_type)/count((<expr>) ELSE 0
- Find
Column ๐Find all column names in a plan - This is a placeholder for tumble_start and tumble_end function, so that datafusion can recognize them as scalar function
- Tumble
Expand ๐Rule expand tumble in aggr expr to tumble_start and tumble_end with column name likewindow_start
Functionsยง
- make sure everything in group byโs expr is in select
- expand_
avg_ ๐analyzer expandavg(<expr>)
function intocast(sum((<expr>) AS f64)/count((<expr>)
- expand
tumble
in aggr expr totumble_start
andtumble_end
, also expand related alias and column ref - lift aggrโs composite aggr_expr to outer proj, and leave aggr only with simple direct aggr expr i.e.
- To reuse existing code for parse sql, the sql is first parsed into a datafusion logical plan, then to a substrait plan, and finally to a flow plan.