You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AQuery/engine/TODO.md

476 B

TODO:

1. double scans in projections

  • first for special aggrigations and singular columns
  • Then in group by node decide if we have special group by aggregations
  • If sp_gb_agg exists, the entire groupby aggregation is done in C plugin
  • If not, group by is done in SQL

2. ColRef supports multiple objects

  • A.a = B.b then in projection A.a B.b will refer to same projection
  • Colref::ProjEq(ColRef v) => this == v or v in this.proj_eqs