You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by dw...@apache.org on 2022/03/02 10:54:48 UTC

[flink] branch master updated: [hotfix][Pattern Recognition][docs] Fixed an issue that the example of “Time constraint” omits a comma.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7faf8d8  [hotfix][Pattern Recognition][docs] Fixed an issue that the example of “Time constraint” omits a comma.
7faf8d8 is described below

commit 7faf8d831a30b54630f25b4b71314240190375a7
Author: jxjgsylsg <jx...@126.com>
AuthorDate: Wed Jan 12 13:46:45 2022 +0800

    [hotfix][Pattern Recognition][docs] Fixed an issue that the example of “Time constraint” omits a comma.
    
    This closes #18335
---
 docs/content.zh/docs/dev/table/sql/queries/match_recognize.md | 2 +-
 docs/content/docs/dev/table/sql/queries/match_recognize.md    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/content.zh/docs/dev/table/sql/queries/match_recognize.md b/docs/content.zh/docs/dev/table/sql/queries/match_recognize.md
index d1729aa..e6b11fc 100644
--- a/docs/content.zh/docs/dev/table/sql/queries/match_recognize.md
+++ b/docs/content.zh/docs/dev/table/sql/queries/match_recognize.md
@@ -405,7 +405,7 @@ FROM Ticker
         AFTER MATCH SKIP PAST LAST ROW
         PATTERN (A B* C) WITHIN INTERVAL '1' HOUR
         DEFINE
-            B AS B.price > A.price - 10
+            B AS B.price > A.price - 10,
             C AS C.price < A.price - 10
     )
 ```
diff --git a/docs/content/docs/dev/table/sql/queries/match_recognize.md b/docs/content/docs/dev/table/sql/queries/match_recognize.md
index 047506c..5e3ec6c 100644
--- a/docs/content/docs/dev/table/sql/queries/match_recognize.md
+++ b/docs/content/docs/dev/table/sql/queries/match_recognize.md
@@ -481,7 +481,7 @@ FROM Ticker
         AFTER MATCH SKIP PAST LAST ROW
         PATTERN (A B* C) WITHIN INTERVAL '1' HOUR
         DEFINE
-            B AS B.price > A.price - 10
+            B AS B.price > A.price - 10,
             C AS C.price < A.price - 10
     )
 ```