Skip to content

Commit

Permalink
[FLINK-23270][docs][table] Impove description of Regular Joins section (
Browse files Browse the repository at this point in the history
apache#16392)

Co-authored-by: liufangliang <[email protected]>
  • Loading branch information
pyscala and liufangliang committed Jul 6, 2021
1 parent bad18ed commit 8e65421
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content.zh/docs/dev/table/sql/queries/joins.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Regular Joins
-------------

Regular joins are the most generic type of join in which any new record, or changes to either side of the join, are visible and affect the entirety of the join result.
For example, if there is a new record on the left side, it will be joined with all the previous and future records on the right side.
For example, if there is a new record on the left side, it will be joined with all the previous and future records on the right side when the product id equals.

```sql
SELECT * FROM Orders
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/dev/table/sql/queries/joins.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Regular Joins
-------------

Regular joins are the most generic type of join in which any new record, or changes to either side of the join, are visible and affect the entirety of the join result.
For example, if there is a new record on the left side, it will be joined with all the previous and future records on the right side.
For example, if there is a new record on the left side, it will be joined with all the previous and future records on the right side when the product id equals.

```sql
SELECT * FROM Orders
Expand Down

0 comments on commit 8e65421

Please sign in to comment.