From 374a0f6318bcf423b1b784d30b25a8327c65cb24 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 6 Jul 2023 09:28:12 +0200 Subject: Merging upstream version 17.2.0. Signed-off-by: Daniel Baumann --- tests/fixtures/pretty.sql | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'tests/fixtures/pretty.sql') 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; -- cgit v1.2.3