diff options
author | stephan <stephan@noemail.net> | 2023-10-28 03:54:28 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2023-10-28 03:54:28 +0000 |
commit | a9fea287610298a7748a01cb423fa1263ed8f428 (patch) | |
tree | 28c87ec6be6fae831bd0678254745af47a864363 /ext/wasm/api/sqlite3-wasm.c | |
parent | 4b8010a8ee0fec09de4114e1ed381386b53ac425 (diff) | |
download | sqlite-a9fea287610298a7748a01cb423fa1263ed8f428.tar.gz sqlite-a9fea287610298a7748a01cb423fa1263ed8f428.zip |
Remove the SQLITE_MAX_ALLOCATION_SIZE flag (set to 536mb) from the WASM and JNI builds because it can unduly limit db exports via sqlite3_serialize(), as reported in [forum:75524f7342c1ba45|forum post 75524f7342c1ba45]. It now defaults to whatever sqlite3.c uses, which is currently just shy of 2gb.
FossilOrigin-Name: f6e1137919243c5ce86725df64b40b7e12e82cbceaff210ca41616d620f0dd1b
Diffstat (limited to 'ext/wasm/api/sqlite3-wasm.c')
-rw-r--r-- | ext/wasm/api/sqlite3-wasm.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/wasm/api/sqlite3-wasm.c b/ext/wasm/api/sqlite3-wasm.c index 88a679c51..18d27bdf0 100644 --- a/ext/wasm/api/sqlite3-wasm.c +++ b/ext/wasm/api/sqlite3-wasm.c @@ -130,12 +130,6 @@ #endif /**********************************************************************/ -/* SQLITE_M... */ -#ifndef SQLITE_MAX_ALLOCATION_SIZE -# define SQLITE_MAX_ALLOCATION_SIZE 0x1fffffff -#endif - -/**********************************************************************/ /* SQLITE_O... */ #ifndef SQLITE_OMIT_DEPRECATED # define SQLITE_OMIT_DEPRECATED 1 |