This is an automated email from the ASF dual-hosted git repository.
dwysakowicz pushed a commit to branch release-1.14
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.14 by this push:
new cc82e34 [hotfix][Pattern Recognition][docs] Fixed an issue that the
example of “Time constraint” omits a comma.
cc82e34 is described below
commit cc82e34144886f44eee093a9198c15839103b5f6
Author: jxjgsylsg <[email protected]>
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.
---
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 8b064b4..edaa6e4 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 7d29cae..2e3c8d4 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
)
```