You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "cloudzhao (Jira)" <ji...@apache.org> on 2020/04/26 10:18:00 UTC

[jira] [Updated] (FLINK-17388) flink sql The custom function in ROW type is executed multiple times

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

cloudzhao updated FLINK-17388:
------------------------------
    Affects Version/s: 1.9.1

> flink sql  The custom function in ROW type is executed multiple times
> ---------------------------------------------------------------------
>
>                 Key: FLINK-17388
>                 URL: https://issues.apache.org/jira/browse/FLINK-17388
>             Project: Flink
>          Issue Type: Bug
>    Affects Versions: 1.9.1
>            Reporter: cloudzhao
>            Priority: Major
>
> val tableA = tableEnv.sqlQuery("select custom_func(a) as a, custom_func(b) as b from tableS")
> tableEnv.registerTable("tableA", tableA)
> val tableB = tableEnv.sqlQuery("select ROW(a, b) as body from tableA")
> tableEnv.registerTable("tableB", tableB)
> val tableC = tableEnv.sqlQuery("select body.a, body.b from tableB")
> In this logic, the custom_func is executed four times
> tableC === select Row(custom_func(a) as a, custom_func(b) as b).a, Row(custom_func(a) as a, custom_func(b) as b).b from tableS



--
This message was sent by Atlassian Jira
(v8.3.4#803005)