This is an automated email from the ASF dual-hosted git repository.
jark 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 54c6818 [FLINK-23162][docs] Update column used in expression for
creating table in "Time Attribute" page
54c6818 is described below
commit 54c681835a8c73a498d8139ff09a400dcf1b182b
Author: mans2singh <[email protected]>
AuthorDate: Sun Jun 27 01:14:33 2021 -0400
[FLINK-23162][docs] Update column used in expression for creating table in
"Time Attribute" page
This closes #16301
---
docs/content.zh/docs/dev/table/concepts/time_attributes.md | 2 +-
docs/content/docs/dev/table/concepts/time_attributes.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/content.zh/docs/dev/table/concepts/time_attributes.md
b/docs/content.zh/docs/dev/table/concepts/time_attributes.md
index aabd41f..1d2db37 100644
--- a/docs/content.zh/docs/dev/table/concepts/time_attributes.md
+++ b/docs/content.zh/docs/dev/table/concepts/time_attributes.md
@@ -262,7 +262,7 @@ CREATE TABLE user_actions (
user_name STRING,
data STRING,
ts BIGINT,
- time_ltz AS TO_TIMESTAMP_LTZ(time_ltz, 3),
+ time_ltz AS TO_TIMESTAMP_LTZ(ts, 3),
-- declare time_ltz as event time attribute and use 5 seconds delayed
watermark strategy
WATERMARK FOR time_ltz AS time_ltz - INTERVAL '5' SECOND
) WITH (
diff --git a/docs/content/docs/dev/table/concepts/time_attributes.md
b/docs/content/docs/dev/table/concepts/time_attributes.md
index 55e303a..4c0ed39 100644
--- a/docs/content/docs/dev/table/concepts/time_attributes.md
+++ b/docs/content/docs/dev/table/concepts/time_attributes.md
@@ -86,7 +86,7 @@ CREATE TABLE user_actions (
user_name STRING,
data STRING,
ts BIGINT,
- time_ltz AS TO_TIMESTAMP_LTZ(time_ltz, 3),
+ time_ltz AS TO_TIMESTAMP_LTZ(ts, 3),
-- declare time_ltz as event time attribute and use 5 seconds delayed
watermark strategy
WATERMARK FOR time_ltz AS time_ltz - INTERVAL '5' SECOND
) WITH (