diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-03 07:37:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-03 07:37:50 +0000 |
commit | 8b1fb8d8676e832d02b99bb8e69f6897dd10c0f6 (patch) | |
tree | d31426ac93b330e755f0b500704e236b9a62dc15 /tests/fixtures/pretty.sql | |
parent | Releasing debian version 25.16.1-1. (diff) | |
download | sqlglot-8b1fb8d8676e832d02b99bb8e69f6897dd10c0f6.tar.xz sqlglot-8b1fb8d8676e832d02b99bb8e69f6897dd10c0f6.zip |
Merging upstream version 25.18.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/fixtures/pretty.sql | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/fixtures/pretty.sql b/tests/fixtures/pretty.sql index d4eb3b9..8e10517 100644 --- a/tests/fixtures/pretty.sql +++ b/tests/fixtures/pretty.sql @@ -99,14 +99,14 @@ WITH cte1 AS ( FOO(CASE WHEN a AND b THEN c AND d ELSE 3 END) GROUP BY x, - GROUPING SETS ( - a, - (b, c) - ), - CUBE ( - y, - z - ) + GROUPING SETS ( + a, + (b, c) + ), + CUBE ( + y, + z + ) ) AS x ) SELECT |