-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.15.0
-
Fix Version/s: 1.16.0
-
Component/s: jdbc-adapter
-
Labels:None
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.