diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-07-06 07:28:12 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-07-06 07:28:12 +0000 |
commit | 374a0f6318bcf423b1b784d30b25a8327c65cb24 (patch) | |
tree | 9303a1cbdba85b5d9781ebef32eb1902d3790c99 /tests/fixtures/pretty.sql | |
parent | Releasing debian version 16.7.7-1. (diff) | |
download | sqlglot-374a0f6318bcf423b1b784d30b25a8327c65cb24.tar.xz sqlglot-374a0f6318bcf423b1b784d30b25a8327c65cb24.zip |
Merging upstream version 17.2.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/fixtures/pretty.sql')
-rw-r--r-- | tests/fixtures/pretty.sql | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/fixtures/pretty.sql b/tests/fixtures/pretty.sql index 46cd6d8..1a61334 100644 --- a/tests/fixtures/pretty.sql +++ b/tests/fixtures/pretty.sql @@ -363,3 +363,23 @@ SELECT A.* EXCEPT (A.COL_1, A.COL_2) FROM TABLE_1 AS A; + +SELECT * +FROM a +JOIN b + JOIN c + ON b.id = c.id + ON a.id = b.id +CROSS JOIN d +JOIN e + ON d.id = e.id; +SELECT + * +FROM a +JOIN b + JOIN c + ON b.id = c.id + ON a.id = b.id +CROSS JOIN d +JOIN e + ON d.id = e.id; |