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

Flink Jira Bot updated FLINK-13389:
-----------------------------------
      Labels: auto-deprioritized-major auto-deprioritized-minor  (was: 
auto-deprioritized-major stale-minor)
    Priority: Not a Priority  (was: Minor)

This issue was labeled "stale-minor" 7 days ago and has not received any 
updates so it is being deprioritized. If this ticket is actually Minor, please 
raise the priority and ask a committer to assign you the issue or revive the 
public discussion.


> Setting DataStream return type breaks some type conversion between Table and 
> DataStream
> ---------------------------------------------------------------------------------------
>
>                 Key: FLINK-13389
>                 URL: https://issues.apache.org/jira/browse/FLINK-13389
>             Project: Flink
>          Issue Type: Bug
>          Components: API / DataStream, Table SQL / API
>            Reporter: Rong Rong
>            Priority: Not a Priority
>              Labels: auto-deprioritized-major, auto-deprioritized-minor
>
> When converting between data stream and table, there are situations where 
> only GenericTypeInfo can be successfully applied, but not directly setting 
> the specific RowTypeInfo.
> For example the following code doesn't work
> {code:java}
>               TypeInformation<?>[] types = {
>                       BasicTypeInfo.INT_TYPE_INFO,
>                       TimeIndicatorTypeInfo.ROWTIME_INDICATOR(),
>                       BasicTypeInfo.STRING_TYPE_INFO};
>               String[] names = {"a", "b", "c"};
>               RowTypeInfo typeInfo = new RowTypeInfo(types, names);
>               DataStream<Row> ds = env.fromCollection(data).returns(typeInfo);
>               Table sourceTable = tableEnv.fromDataStream(ds, "a,b,c");
>               tableEnv.registerTable("MyTableRow", sourceTable);
>               DataStream<Row> stream = tableEnv.toAppendStream(sourceTable, 
> Row.class)
>                       .map(a -> a)
>                       // this line breaks the conversion, it sets the 
> typeinfo to RowTypeInfo.
>                       // without this line the output type is 
> GenericTypeInfo(Row)
>                       .returns(sourceTable.getSchema().toRowType());  
>               stream.addSink(new StreamITCase.StringSink<Row>());
>               env.execute();
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

Reply via email to