You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tw...@apache.org on 2021/05/07 16:36:50 UTC

[flink] branch release-1.13 updated: [hotfix][docs] Mention new StreamTableEnvironment.fromDataStream in Chinese release notes

This is an automated email from the ASF dual-hosted git repository.

twalthr pushed a commit to branch release-1.13
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.13 by this push:
     new a1d356a  [hotfix][docs] Mention new StreamTableEnvironment.fromDataStream in Chinese release notes
a1d356a is described below

commit a1d356aad9acf4752f793d4fbd66f7f2e110eaee
Author: Timo Walther <tw...@apache.org>
AuthorDate: Fri May 7 18:36:12 2021 +0200

    [hotfix][docs] Mention new StreamTableEnvironment.fromDataStream in Chinese release notes
---
 docs/content.zh/release-notes/flink-1.13.md | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/docs/content.zh/release-notes/flink-1.13.md b/docs/content.zh/release-notes/flink-1.13.md
index 601cff0..6081f9b 100644
--- a/docs/content.zh/release-notes/flink-1.13.md
+++ b/docs/content.zh/release-notes/flink-1.13.md
@@ -127,6 +127,14 @@ The most important differences include:
 * Structured types are represented as POJOs of the original class and not Row anymore.
 * Raw types are serialized according to the configuration in TableConfig.
 
+#### Add new StreamTableEnvironment.fromDataStream
+
+##### [FLINK-19977](https://issues.apache.org/jira/browse/FLINK-19977)
+
+`StreamTableEnvironment.fromDataStream` has slightly different semantics now because it has been
+integrated into the new type system. Esp. row fields derived from composite type information
+might be in a different order compared to 1.12. The old behavior is still available via the
+overloaded method that takes expressions like `fromDataStream(ds, $("field1"), $("field2"))`.
 
 #### Update the Row.toString method