We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52d4ef5 commit 839f80dCopy full SHA for 839f80d
src/views/results/binding.ts
@@ -46,6 +46,8 @@ export function getLiteralsFromStatement(group: StatementGroup): SqlParameter[]
46
} else {
47
literals.push(Number(token.value));
48
}
49
+ } else if (tokenIs(token, `word`, `NULL`)) {
50
+ literals.push(null);
51
52
53
0 commit comments