Skip to content

Commit a43cae7

Browse files
committed
Enable negative interval literals test
1 parent 2c10f65 commit a43cae7

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

test/expr/literal.test.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,13 @@ describe("literal", () => {
2727
dedent`
2828
SELECT
2929
INTERVAL 5 DAY,
30+
INTERVAL -90 MINUTE,
3031
INTERVAL '10:20:30.52' HOUR TO SECOND,
3132
INTERVAL '1 5:30' DAY TO MINUTE
3233
`,
3334
);
3435
});
3536

36-
it.skip(`formats INTERVAL literals with negative value`, async () => {
37-
await testBigquery(
38-
dedent`
39-
SELECT INTERVAL -90 MINUTE
40-
`,
41-
);
42-
});
43-
4437
it(`formats PostgreSQL INTERVAL literals`, async () => {
4538
await testPostgresql(
4639
dedent`

0 commit comments

Comments
 (0)