Skip to content

Commit 15e8f52

Browse files
psarnapenberg
authored andcommitted
wasm: drop SQLITE_OMIT_WAL flag
We want to be able to use WAL journaling from the browser eventually, so the flag is hereby dropped.
1 parent d0e58fa commit 15e8f52

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

ext/wasm/GNUmakefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ SQLITE_OPT = \
130130
-DSQLITE_OMIT_DEPRECATED \
131131
-DSQLITE_OMIT_UTF16 \
132132
-DSQLITE_OMIT_SHARED_CACHE \
133-
-DSQLITE_OMIT_WAL \
134133
-DSQLITE_THREADSAFE=0 \
135134
-DSQLITE_TEMP_STORE=3 \
136135
-DSQLITE_OS_KV_OPTIONAL=1 \

ext/wasm/api/sqlite3-wasm.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,6 @@
122122
#ifndef SQLITE_OMIT_UTF16
123123
# define SQLITE_OMIT_UTF16 1
124124
#endif
125-
#ifndef SQLITE_OMIT_WAL
126-
# define SQLITE_OMIT_WAL 1
127-
#endif
128125
#ifndef SQLITE_OS_KV_OPTIONAL
129126
# define SQLITE_OS_KV_OPTIONAL 1
130127
#endif

0 commit comments

Comments
 (0)