This is an automated email from the ASF dual-hosted git repository.
jark 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 97fbb701314 [FLINK-29458][docs] Fix column names in SELECT clause in
"Joins" page
97fbb701314 is described below
commit 97fbb701314205fd1d51d7edb1f6ef7a27f880c7
Author: ZmmBigdata <[email protected]>
AuthorDate: Mon Oct 31 14:34:21 2022 +0800
[FLINK-29458][docs] Fix column names in SELECT clause in "Joins" page
This closes #20983
---
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 a939ccb29f7..0a5fd96f71c 100644
--- a/docs/content.zh/docs/dev/table/sql/queries/joins.md
+++ b/docs/content.zh/docs/dev/table/sql/queries/joins.md
@@ -165,7 +165,7 @@ CREATE TABLE currency_rates (
SELECT
order_id,
price,
- currency,
+ orders.currency,
conversion_rate,
order_time
FROM orders
diff --git a/docs/content/docs/dev/table/sql/queries/joins.md
b/docs/content/docs/dev/table/sql/queries/joins.md
index de34a7d4882..4674ffeeb84 100644
--- a/docs/content/docs/dev/table/sql/queries/joins.md
+++ b/docs/content/docs/dev/table/sql/queries/joins.md
@@ -165,7 +165,7 @@ CREATE TABLE currency_rates (
SELECT
order_id,
price,
- currency,
+ orders.currency,
conversion_rate,
order_time
FROM orders