You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Timo Walther (JIRA)" <ji...@apache.org> on 2019/01/04 12:54:00 UTC

[jira] [Closed] (FLINK-11119) Incorrect Scala example for Table Function

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

Timo Walther closed FLINK-11119.
--------------------------------
       Resolution: Fixed
    Fix Version/s: 1.8.0
                   1.7.2
                   1.6.4

Fixed in master: d3f0075b041c8fd681a776b3278d12c4483a48ac
Fixed in 1.7: f9c587475abb0c6aeb646b068602a1d7cb2e5cf3
Fixed in 1.6: 3b8126531b8dfa4f6ce592afbd61cd6e06f0f8ed

> Incorrect Scala example for Table Function
> ------------------------------------------
>
>                 Key: FLINK-11119
>                 URL: https://issues.apache.org/jira/browse/FLINK-11119
>             Project: Flink
>          Issue Type: Bug
>          Components: Documentation
>    Affects Versions: 1.6.2, 1.7.0
>            Reporter: Denys Fakhritdinov
>            Assignee: TANG Wen-hui
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.6.4, 1.7.2, 1.8.0
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> Issue in Scala example in documentation: [https://ci.apache.org/projects/flink/flink-docs-release-1.7/dev/table/udfs.html#table-functions]
> Currently it is:
> {code:java}
> tableEnv.sqlQuery("SELECT a, word, length FROM MyTable LEFT JOIN TABLE(split(a)) as T(word, length) ON TRUE")
> {code}
> Should be (like in Java version):
> {code:java}
> tableEnv.sqlQuery("SELECT a, word, length FROM MyTable LEFT JOIN LATERAL TABLE(split(a)) as T(word, length) ON TRUE"){code}
> {color:#FF0000}*LATERAL*{color} is missed in Scala version



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)