Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.15.0
-
None
Description
This RelNode tree:
LogicalProject(x=[$0]) LogicalTableScan(table=[[t]])
is converted to:
SELECT * FROM `t`
when it should be:
SELECT `a` AS `x` FROM `t`
See dev list thread.