in testAliasFilter(), the plan is
LogicalFilter(condition=[>($1, $2)]) LogicalProject($f1=[20], $f12=[10], DEPTNO=[$7]) LogicalTableScan(table=[[scott, EMP]])
The project alias should be
LogicalProject($f1=[20], $f2=[10], DEPTNO=[$7])
- links to
in testAliasFilter(), the plan is
LogicalFilter(condition=[>($1, $2)]) LogicalProject($f1=[20], $f12=[10], DEPTNO=[$7]) LogicalTableScan(table=[[scott, EMP]])
The project alias should be
LogicalProject($f1=[20], $f2=[10], DEPTNO=[$7])