diff options
author | stephan <stephan@noemail.net> | 2023-07-17 07:13:44 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2023-07-17 07:13:44 +0000 |
commit | 2bf2ff605fffe0a501d83b076780a01178fb8de8 (patch) | |
tree | af3715691bf21ad4b09819fd0b362470c9117ef3 /ext/wasm/api/sqlite3-wasm.c | |
parent | 039081123cae1fecfc925dd6dc2f18e17cac3944 (diff) | |
download | sqlite-2bf2ff605fffe0a501d83b076780a01178fb8de8.tar.gz sqlite-2bf2ff605fffe0a501d83b076780a01178fb8de8.zip |
Change wasm build's -DSQLITE_TEMP_STORE=3 to -DSQLITE_TEMP_STORE=2, primarily so that clients can optionally shift temp files from memory to OPFS storage.
FossilOrigin-Name: 764430e804332b8f7b2f63a3c0c8acf8f6cc92534858d89de2d310938c1c0d27
Diffstat (limited to 'ext/wasm/api/sqlite3-wasm.c')
-rw-r--r-- | ext/wasm/api/sqlite3-wasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/api/sqlite3-wasm.c b/ext/wasm/api/sqlite3-wasm.c index dbe594dc3..94b16d750 100644 --- a/ext/wasm/api/sqlite3-wasm.c +++ b/ext/wasm/api/sqlite3-wasm.c @@ -151,7 +151,7 @@ /**********************************************************************/ /* SQLITE_T... */ #ifndef SQLITE_TEMP_STORE -# define SQLITE_TEMP_STORE 3 +# define SQLITE_TEMP_STORE 2 #endif #ifndef SQLITE_THREADSAFE # define SQLITE_THREADSAFE 0 |