Skip to content

Commit 95ae97e

Browse files
committed
add issue #217 fixture
1 parent f3bd764 commit 95ae97e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

__fixtures__/generated/generated.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21285,6 +21285,7 @@
2128521285
"misc/issues-14.sql": "SELECT (1 IS NOT NULL) IS DISTINCT FROM (2 IS NOT NULL)",
2128621286
"misc/issues-15.sql": "select \"A\" from \"table_name\"",
2128721287
"misc/issues-16.sql": "select \"AA\" from \"table_name\"",
21288+
"misc/issues-17.sql": "SELECT CAST(t.date AT TIME ZONE $$America/New_York$$ AS text)::date FROM tbl t",
2128821289
"misc/inflection-1.sql": "CREATE SCHEMA inflection",
2128921290
"misc/inflection-2.sql": "GRANT USAGE ON SCHEMA inflection TO PUBLIC",
2129021291
"misc/inflection-3.sql": "ALTER DEFAULT PRIVILEGES IN SCHEMA inflection \n GRANT EXECUTE ON FUNCTIONS TO PUBLIC",

packages/deparser/__tests__/kitchen-sink/misc-issues.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ it('misc-issues', async () => {
1919
"misc/issues-13.sql",
2020
"misc/issues-14.sql",
2121
"misc/issues-15.sql",
22-
"misc/issues-16.sql"
22+
"misc/issues-16.sql",
23+
"misc/issues-17.sql"
2324
]);
2425
});

0 commit comments

Comments
 (0)