You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by pn...@apache.org on 2019/01/18 12:23:01 UTC

[flink] branch master updated (de04658 -> ff615ce)

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

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


    from de04658  [FLINK-11036] Fix test_streaming_classloader.sh end-to-end test
     new 0e27da3  [hotfix][table] Converted static generateIterativeCondition & generateOneRowPerMatchExpression methods into inner methods
     new 0055088  [hotfix][table] Switched from PatternSelectFunction to PatternProcessFunction
     new 36639d3  [FLINK-10591][table] Introduced functions to return time attributes from  MATCH_RECOGNIZE
     new 2790408  [FLINK-10591][docs] Added description of MATCH_ROWTIME and MATCH_PROCTIME functions
     new ff615ce  [hotfix][docs] Formatted match_recognize.md to keep line length under 100 characters.

The 15534 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/dev/table/streaming/match_recognize.md        | 447 ++++++++++++++-------
 .../table/calcite/RelTimeIndicatorConverter.scala  |  47 ++-
 .../apache/flink/table/codegen/CodeGenerator.scala |   2 +-
 .../flink/table/codegen/MatchCodeGenerator.scala   | 162 ++++----
 .../plan/nodes/datastream/DataStreamMatch.scala    |  22 +-
 ...er.scala => PatternProcessFunctionRunner.scala} |  34 +-
 .../flink/table/validate/FunctionCatalog.scala     |  46 ++-
 ...st.scala => MatchRecognizeValidationTest.scala} |  32 +-
 .../table/plan/TimeIndicatorConversionTest.scala   | 117 +++++-
 .../table/runtime/harness/MatchHarnessTest.scala   |  97 +++++
 .../runtime/stream/sql/MatchRecognizeITCase.scala  |  99 +++--
 11 files changed, 786 insertions(+), 319 deletions(-)
 rename flink-libraries/flink-table/src/main/scala/org/apache/flink/table/runtime/match/{PatternSelectFunctionRunner.scala => PatternProcessFunctionRunner.scala} (68%)
 copy flink-libraries/flink-table/src/test/scala/org/apache/flink/table/api/stream/sql/validation/{CorrelateValidationTest.scala => MatchRecognizeValidationTest.scala} (59%)
 create mode 100644 flink-libraries/flink-table/src/test/scala/org/apache/flink/table/runtime/harness/MatchHarnessTest.scala