Skip to content

Commit

Permalink
[FLINK-24958][docs] Fix the link and typo in SQL "Joins" page (apache…
Browse files Browse the repository at this point in the history
  • Loading branch information
zoucao authored Nov 24, 2021
1 parent f8fdb67 commit ae813a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/content.zh/docs/dev/table/sql/queries/joins.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Since time attributes are quasi-monotonic increasing, Flink can remove old value
Temporal Joins
--------------

A Temporal table is a table that evolves over time - otherwise known in Flink as a [dynamic table]({% link dev/table/streaming/dynamic_tables.md %}). Rows in a temporal table are associated with one or more temporal periods and all Flink tables are temporal(dynamic).
A Temporal table is a table that evolves over time - otherwise known in Flink as a [dynamic table]({{< ref "docs/dev/table/concepts/dynamic_tables" >}}). Rows in a temporal table are associated with one or more temporal periods and all Flink tables are temporal(dynamic).
The temporal table contains one or more versioned table snapshots, it can be a changing history table which tracks the changes(e.g. database changelog, contains all snapshots) or a changing dimensioned table which materializes the changes(e.g. database table which contains the latest snapshot).

### Event Time Temporal Join
Expand Down Expand Up @@ -167,7 +167,7 @@ SELECT
price,
currency,
conversion_rate,
order_time,
order_time
FROM orders
LEFT JOIN currency_rates FOR SYSTEM_TIME AS OF orders.order_time
ON orders.currency = currency_rates.currency;
Expand Down
4 changes: 2 additions & 2 deletions docs/content/docs/dev/table/sql/queries/joins.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Since time attributes are quasi-monotonic increasing, Flink can remove old value
Temporal Joins
--------------

A Temporal table is a table that evolves over time - otherwise known in Flink as a [dynamic table]({% link dev/table/streaming/dynamic_tables.md %}). Rows in a temporal table are associated with one or more temporal periods and all Flink tables are temporal(dynamic).
A Temporal table is a table that evolves over time - otherwise known in Flink as a [dynamic table]({{< ref "docs/dev/table/concepts/dynamic_tables" >}}). Rows in a temporal table are associated with one or more temporal periods and all Flink tables are temporal(dynamic).
The temporal table contains one or more versioned table snapshots, it can be a changing history table which tracks the changes(e.g. database changelog, contains all snapshots) or a changing dimensioned table which materializes the changes(e.g. database table which contains the latest snapshot).

### Event Time Temporal Join
Expand Down Expand Up @@ -167,7 +167,7 @@ SELECT
price,
currency,
conversion_rate,
order_time,
order_time
FROM orders
LEFT JOIN currency_rates FOR SYSTEM_TIME AS OF orders.order_time
ON orders.currency = currency_rates.currency;
Expand Down

0 comments on commit ae813a7

Please sign in to comment.