diff options
author | stephan <stephan@noemail.net> | 2023-07-22 19:57:42 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2023-07-22 19:57:42 +0000 |
commit | 2ecadd8869a5aafeaee736fbfd0dcb15990480c7 (patch) | |
tree | 9641780ec5137dea9dcafd282dad8d7f0c9ddbec /ext/wasm/api/sqlite3-wasm.c | |
parent | 5d03b1610f268916a7609d5fb290441a07787357 (diff) | |
parent | bfe6dd0100d54e43601b96da97b27a5cda82578a (diff) | |
download | sqlite-2ecadd8869a5aafeaee736fbfd0dcb15990480c7.tar.gz sqlite-2ecadd8869a5aafeaee736fbfd0dcb15990480c7.zip |
Add the opfs-sahpool sqlite3_vfs implementation to JS, offering an alternative to the other OPFS VFS (with tradeoffs).
FossilOrigin-Name: d2e602cda44bf35e76167143262b4f91826d25780d0e095e680a31d5dedb2018
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 |