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

jark 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 c10de14  [FLINK-24115][docs] Fix outdated SQL Temporal Join example 
(#17122)
c10de14 is described below

commit c10de14ce6777d2b10d1284b2fe70f3c658cb60a
Author: Leonard Xu <xbjt...@163.com>
AuthorDate: Wed Sep 8 10:43:22 2021 +0800

    [FLINK-24115][docs] Fix outdated SQL Temporal Join example (#17122)
---
 docs/content.zh/docs/dev/table/sql/queries/joins.md | 2 +-
 docs/content/docs/dev/table/sql/queries/joins.md    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/content.zh/docs/dev/table/sql/queries/joins.md 
b/docs/content.zh/docs/dev/table/sql/queries/joins.md
index 98e6ffc..6e8e886 100644
--- a/docs/content.zh/docs/dev/table/sql/queries/joins.md
+++ b/docs/content.zh/docs/dev/table/sql/queries/joins.md
@@ -178,7 +178,7 @@ o_002     12.51  EUR       1.10             12:06:00
 
 **Note:** The event-time temporal join is triggered by a watermark from the 
left and right sides; please ensure both sides of the join have set watermark 
correctly.
 
-**Note:** The event-time temporal join requires the primary key contained in 
the equivalence condition of the temporal join condition, e.g., The primary key 
`P.product_id` of table `product_changelog` to be constrained in the condition 
`O.product_id = P.product_id`.
+**Note:** The event-time temporal join requires the primary key contained in 
the equivalence condition of the temporal join condition, e.g., The primary key 
`currency_rates.currency` of table `currency_rates` to be constrained in the 
condition `orders.currency = currency_rates.currency`.
 
 In contrast to [regular joins](#regular-joins), the previous temporal table 
results will not be affected despite the changes on the build side.
 Compared to [interval joins](#interval-joins), temporal table joins do not 
define a time window within which the records will be joined.
diff --git a/docs/content/docs/dev/table/sql/queries/joins.md 
b/docs/content/docs/dev/table/sql/queries/joins.md
index fa605a0..d2fa42b 100644
--- a/docs/content/docs/dev/table/sql/queries/joins.md
+++ b/docs/content/docs/dev/table/sql/queries/joins.md
@@ -178,7 +178,7 @@ o_002     12.51  EUR       1.10             12:06:00
 
 **Note:** The event-time temporal join is triggered by a watermark from the 
left and right sides; please ensure both sides of the join have set watermark 
correctly.
 
-**Note:** The event-time temporal join requires the primary key contained in 
the equivalence condition of the temporal join condition, e.g., The primary key 
`P.product_id` of table `product_changelog` to be constrained in the condition 
`O.product_id = P.product_id`.
+**Note:** The event-time temporal join requires the primary key contained in 
the equivalence condition of the temporal join condition, e.g., The primary key 
`currency_rates.currency` of table `currency_rates` to be constrained in the 
condition `orders.currency = currency_rates.currency`.
 
 In contrast to [regular joins](#regular-joins), the previous temporal table 
results will not be affected despite the changes on the build side.
 Compared to [interval joins](#interval-joins), temporal table joins do not 
define a time window within which the records will be joined.

Reply via email to