Skip to content

Commit 82f1ba8

Browse files
committed
fix parse_top_level test relying on all dialects having a true literal
1 parent 0534270 commit 82f1ba8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/sqlparser_common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ fn parse_top_level() {
820820
verified_stmt("(SELECT 1)");
821821
verified_stmt("((SELECT 1))");
822822
verified_stmt("VALUES (1)");
823-
verified_stmt("VALUES ROW(1, true, 'a'), ROW(2, false, 'b')");
823+
verified_stmt("VALUES ROW(1, NULL, 'a'), ROW(2, NULL, 'b')");
824824
}
825825

826826
#[test]

0 commit comments

Comments
 (0)