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

Timo Walther resolved FLINK-7005.
---------------------------------
       Resolution: Fixed
    Fix Version/s: 1.3.2
                   1.4.0

Fixed in 1.4.0: 02863f397f343502f037f62466643903fb246d7e
Fixed in 1.3.2: 58b3b19c91539f11d3d2636090e3bec1dd7b75d0

> Optimization steps are missing for nested registered tables
> -----------------------------------------------------------
>
>                 Key: FLINK-7005
>                 URL: https://issues.apache.org/jira/browse/FLINK-7005
>             Project: Flink
>          Issue Type: Bug
>          Components: Table API & SQL
>    Affects Versions: 1.3.0, 1.3.1
>            Reporter: Timo Walther
>            Assignee: Timo Walther
>             Fix For: 1.4.0, 1.3.2
>
>
> Tables that are registered (implicitly or explicitly) do not pass the first 
> three optimization steps:
> - decorrelate
> - convert time indicators
> - normalize the logical plan
> E.g. this has the wrong plan right now:
> {code}
> val table = stream.toTable(tEnv, 'rowtime.rowtime, 'int, 'double, 'float, 
> 'bigdec, 'string)
> val table1 = tEnv.sql(s"""SELECT 1 + 1 FROM $table""") // not optimized
> val table2 = tEnv.sql(s"""SELECT myrt FROM $table1""")
> val results = table2.toAppendStream[Row]
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to