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/12/08 14:26:59 UTC

[flink] branch master updated (d8d3779 -> 4b42936)

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

twalthr pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git.


    from d8d3779  [FLINK-25189][docs][connectors/elasticsearch] Update supported versions on Elasticsearch connector page
     add 4b42936  [FLINK-25052][table-planner] Port row to row casting to CastRule

No new revisions were added by this update.

Summary of changes:
 .../apache/flink/table/test/TableAssertions.java   |   4 +
 .../casting/AbstractCodeGeneratorCastRule.java     |  19 +-
 .../functions/casting/CastRuleProvider.java        |   1 +
 .../planner/functions/casting/CastRuleUtils.java   |  19 +
 .../functions/casting/RowToRowCastRule.java        | 231 +++++++++
 .../functions/casting/RowToStringCastRule.java     |  22 +-
 .../flink/table/planner/codegen/CodeGenUtils.scala |  26 +-
 .../planner/codegen/calls/ScalarOperatorGens.scala |  35 --
 .../planner/functions/CastFunctionITCase.java      |  86 ++--
 .../planner/functions/casting/CastRulesTest.java   | 566 +++++++++++----------
 10 files changed, 639 insertions(+), 370 deletions(-)
 create mode 100644 flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/functions/casting/RowToRowCastRule.java