diff options
author | stephan <stephan@noemail.net> | 2022-10-21 17:48:49 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-10-21 17:48:49 +0000 |
commit | 3725af73b9f9bf3b1c6d47d1232ce85347afb853 (patch) | |
tree | b058e9baa28ace17cb83f8024d52a16cac8b644b /ext/wasm/api/sqlite3-wasm.c | |
parent | 89ccfac0ac6cc445c29b6c6dddfa05a72d844f87 (diff) | |
download | sqlite-3725af73b9f9bf3b1c6d47d1232ce85347afb853.tar.gz sqlite-3725af73b9f9bf3b1c6d47d1232ce85347afb853.zip |
Add SQLITE_DQS to the compileoptions_used list, per request in [forum post 8b1060122b|forum:8b1060122b]. Force DQS=0 in sqlite3-wasm.c.
FossilOrigin-Name: fcd9e0dbe3226f3f7ccc15b11fc3aa3b8058571bef274c25a33e9753e22f7551
Diffstat (limited to 'ext/wasm/api/sqlite3-wasm.c')
-rw-r--r-- | ext/wasm/api/sqlite3-wasm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/wasm/api/sqlite3-wasm.c b/ext/wasm/api/sqlite3-wasm.c index 8b767948e..754f9cf0d 100644 --- a/ext/wasm/api/sqlite3-wasm.c +++ b/ext/wasm/api/sqlite3-wasm.c @@ -56,7 +56,7 @@ */ /**********************************************************************/ -/* SQLITE_DEFAULT_... */ +/* SQLITE_D... */ #ifndef SQLITE_DEFAULT_CACHE_SIZE /* ** The OPFS impls benefit tremendously from an increased cache size @@ -75,6 +75,8 @@ #ifndef SQLITE_DEFAULT_UNIX_VFS # define SQLITE_DEFAULT_UNIX_VFS "unix-none" #endif +#undef SQLITE_DQS +#define SQLITE_DQS 0 /**********************************************************************/ /* SQLITE_ENABLE_... */ |