[ 
https://issues.apache.org/jira/browse/FLINK-6326?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Fabian Hueske closed FLINK-6326.
--------------------------------
       Resolution: Fixed
    Fix Version/s: 1.3.0

Fixed with 4024afffcd5a3f011e8ba2a3a1053e8bae6cec4f

> add ProjectMergeRule at logical optimization stage
> --------------------------------------------------
>
>                 Key: FLINK-6326
>                 URL: https://issues.apache.org/jira/browse/FLINK-6326
>             Project: Flink
>          Issue Type: New Feature
>          Components: Table API & SQL
>            Reporter: godfrey he
>            Assignee: godfrey he
>             Fix For: 1.3.0
>
>
> add ProjectMergeRule to merge projections. Some SQLs can not push projection 
> into scan without this rule. 
> e.g.
> table1: id: int, name: string
> table2: id: string, score: double, first: string, last: string
> {code}
> SELECT a.id, b.score FROM 
>  (SELECT id FROM table1 WHERE id > 10) a  
> LEFT OUTER JOIN 
>  (SELECT * FROM table2) b 
> ON CAST(a.id AS VARCHAR) = b.id
> {code}
> {code}
> == Optimized Logical Plan without ProjectMergeRule ==
> DataSetCalc(select=[id, score])
>   DataSetJoin(where=[=(id0, id1)], join=[id, id0, id1, score, first, last], 
> joinType=[LeftOuterJoin])
>     DataSetCalc(select=[id, CAST(id) AS id0], where=[>(id, 10)])
>       BatchTableSourceScan(table=[[table1]], fields=[id])
>     BatchTableSourceScan(table=[[table2]], fields=[id, score, first, last])
> {code}
> {code}
> == Optimized Logical Plan with ProjectMergeRule ==
> DataSetCalc(select=[id, score])
>   DataSetJoin(where=[=(id0, id1)], join=[id, id0, id1, score], 
> joinType=[LeftOuterJoin])
>     DataSetCalc(select=[id, CAST(id) AS id0], where=[>(id, 10)])
>       BatchTableSourceScan(table=[[table1]], fields=[id])
>     BatchTableSourceScan(table=[[table2]], fields=[id, score])
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to