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

Konstantin Knauf updated FLINK-15610:
-------------------------------------
    Issue Type: Improvement  (was: Wish)

As part of https://issues.apache.org/jira/browse/FLINK-22029 the "Wish" issue 
type will be dropped. I changed this one to "Improvement" instead.

> How to achieve the udf that the number of return column is uncertain 
> ---------------------------------------------------------------------
>
>                 Key: FLINK-15610
>                 URL: https://issues.apache.org/jira/browse/FLINK-15610
>             Project: Flink
>          Issue Type: Improvement
>          Components: Table SQL / API
>            Reporter: hehuiyuan
>            Priority: Major
>
> For 
> example:[https://help.aliyun.com/knowledge_detail/98948.html?spm=a2c4g.11186631.2.3.21b81761QhpBte]
>  
> {code:java}
> SELECT c1, c2 
> FROM T1, lateral table(MULTI_KEYVALUE(str, split1, split2, key1, key2)) 
> as T(c1, c2)
> SELECT c1, c2, c3 
> FROM T1, lateral table(MULTI_KEYVALUE(str, split1, split2, key1, key2, key3)) 
> as T(c1, c2, c3)
> {code}
> For Tablefunction:
> {code:java}
> public TypeInformation<Row> getResultType() {
>   return Types.ROW(Types.STRING(),Types.STRING());
> }
> {code}
> The retrun type of  `getResultType` is `TypeInformation<Row>`,i want to 
> achieve the size of row is not fixed.
>  



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

Reply via email to