You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "hehuiyuan (Jira)" <ji...@apache.org> on 2020/01/16 06:20:00 UTC

[jira] [Updated] (FLINK-15610) How to achieve the udf that the number of return column is uncertain

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

hehuiyuan updated FLINK-15610:
------------------------------
    Description: 
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.

 

> 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: Wish
>          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)