Skip to content

Commit

Permalink
Merge pull request #9 from iterative/fix-8
Browse files Browse the repository at this point in the history
sqlite: use 0 instead of FALSE
  • Loading branch information
efiop authored Mar 8, 2023
2 parents 5fa222e + 3905458 commit 13bdf58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sqltrie/sqlite/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ CREATE TABLE IF NOT EXISTS nodes (
);
CREATE INDEX IF NOT EXISTS nodes_pid_idx ON nodes (pid);
INSERT OR IGNORE INTO nodes (id, pid, name, has_value, value)
VALUES (1, NULL, "", FALSE, NULL);
VALUES (1, NULL, "", 0, NULL);

0 comments on commit 13bdf58

Please sign in to comment.