diff options
Diffstat (limited to 'tests/fixtures')
-rw-r--r-- | tests/fixtures/identity.sql | 1 | ||||
-rw-r--r-- | tests/fixtures/pretty.sql | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/tests/fixtures/identity.sql b/tests/fixtures/identity.sql index 31cea81..7892adb 100644 --- a/tests/fixtures/identity.sql +++ b/tests/fixtures/identity.sql @@ -868,6 +868,7 @@ SELECT name SELECT copy SELECT rollup SELECT unnest +SELECT cube, cube.x FROM cube SELECT * FROM a STRAIGHT_JOIN b SELECT COUNT(DISTINCT "foo bar") FROM (SELECT 1 AS "foo bar") AS t SELECT vector diff --git a/tests/fixtures/pretty.sql b/tests/fixtures/pretty.sql index 62ba01c..d4eb3b9 100644 --- a/tests/fixtures/pretty.sql +++ b/tests/fixtures/pretty.sql @@ -395,3 +395,13 @@ JOIN b JOIN d USING (f) USING (g); + +('aaaaaaaaaaa', 'bbbbbbbbbbbbbbbb', 'ccccccccccccc', 'ddddddddddd', 'eeeeeeeeeeeeeeeeeeeee'); +( + 'aaaaaaaaaaa', + 'bbbbbbbbbbbbbbbb', + 'ccccccccccccc', + 'ddddddddddd', + 'eeeeeeeeeeeeeeeeeeeee' +); + |