Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit 5604864

Browse files
committed
add cases with lowercase null
1 parent b8c8e57 commit 5604864

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/src/Parse.purs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ testSuite1 = do
6363
SELECT * FROM `/smallZips.json` WHERE city IS NOT "foo"
6464
"""
6565

66+
parseSucc """
67+
SELECT * FROM `/smallZips.json` WHERE city IS null
68+
"""
69+
6670
parseSucc """
6771
SELECT * FROM `/smallZips.json` WHERE city IS NULL
6872
"""
@@ -71,6 +75,10 @@ testSuite1 = do
7175
SELECT * FROM `/smallZips.json` WHERE city IS NOT NULL
7276
"""
7377

78+
parseSucc """
79+
SELECT * FROM `/smallZips.json` WHERE city IS NOT null
80+
"""
81+
7482
parseSucc """
7583
select a from `/f` where b is not between 1 and (2..3)
7684
"""

0 commit comments

Comments
 (0)