Skip to content

Commit

Permalink
Monthly update of sqlite3
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 1, 2024
1 parent 6b808c3 commit 778b5a4
Show file tree
Hide file tree
Showing 3 changed files with 683 additions and 348 deletions.
2 changes: 1 addition & 1 deletion sqlite
Submodule sqlite updated 94 files
+3 −3 Makefile.msc
+1 −1 VERSION
+1 −1 autoconf/tea/configure.ac
+9 −9 configure
+18 −0 doc/lemon.html
+3 −1 ext/consio/console_io.c
+1 −1 ext/consio/console_io.h
+11 −20 ext/fts3/fts3.c
+2 −0 ext/fts3/fts3Int.h
+3 −3 ext/fts3/fts3_write.c
+10 −13 ext/fts5/fts5_main.c
+229 −0 ext/fts5/test/fts5corrupt5.test
+26 −0 ext/fts5/test/fts5integrity.test
+20 −0 ext/fts5/test/fts5misc.test
+0 −3 ext/jni/src/c/sqlite3-jni.c
+17 −17 ext/jni/src/org/sqlite/jni/capi/CApi.java
+14 −4 ext/jni/src/org/sqlite/jni/fts5/TesterFts5.java
+22 −0 ext/misc/noop.c
+11 −7 ext/misc/series.c
+16 −2 ext/misc/totype.c
+10 −11 ext/rtree/rtree.c
+1 −3 ext/session/sqlite3session.c
+12 −0 ext/userauth/user-auth.txt
+139 −44 ext/wasm/GNUmakefile
+9 −3 ext/wasm/SQLTester/SQLTester.mjs
+6 −4 ext/wasm/api/README.md
+4 −2 ext/wasm/api/post-js-header.js
+235 −41 ext/wasm/api/sqlite3-api-glue.js
+4 −1 ext/wasm/api/sqlite3-api-oo1.js
+15 −15 ext/wasm/api/sqlite3-api-prologue.js
+9 −4 ext/wasm/api/sqlite3-api-worker1.js
+103 −0 ext/wasm/api/sqlite3-vfs-helper.c-pp.js
+2 −22 ext/wasm/api/sqlite3-vfs-opfs.c-pp.js
+6 −301 ext/wasm/api/sqlite3-vtab-helper.c-pp.js
+65 −69 ext/wasm/api/sqlite3-wasm.c
+4 −0 ext/wasm/api/sqlite3-worker1-promiser.c-pp.js
+4 −0 ext/wasm/api/sqlite3-worker1.c-pp.js
+1 −3 ext/wasm/fiddle/fiddle-worker.js
+0 −4 ext/wasm/speedtest1-worker.js
+22 −21 ext/wasm/tester1.c-pp.js
+98 −93 manifest
+1 −1 manifest.uuid
+21 −5 src/analyze.c
+4 −2 src/btree.c
+5 −3 src/build.c
+107 −25 src/date.c
+1 −1 src/func.c
+169 −88 src/json.c
+1 −1 src/main.c
+8 −0 src/memdb.c
+9 −3 src/os_unix.c
+6 −1 src/os_win.c
+2 −3 src/pager.c
+13 −1 src/parse.y
+8 −5 src/resolve.c
+118 −14 src/shell.c.in
+6 −1 src/sqliteInt.h
+1 −1 src/sqliteLimit.h
+49 −0 src/test1.c
+11 −2 src/vdbe.c
+33 −13 src/vdbemem.c
+1 −1 src/vdbesort.c
+60 −11 src/wal.c
+14 −7 src/where.c
+4 −4 test/alter2.test
+2 −2 test/date.test
+3 −3 test/date4.test
+8 −1 test/distinctagg.test
+17 −0 test/fts4intck1.test
+3 −0 test/func.test
+6 −6 test/func4.test
+40 −17 test/json/README.md
+9 −12 test/json/json-speed-check.sh
+0 −0 test/json/jsonb-q1.txt
+3 −0 test/json106.test
+86 −0 test/json107.test
+27 −0 test/json501.test
+4 −0 test/jsonb01.test
+62 −0 test/literal.test
+13 −0 test/memdb1.test
+18 −6 test/misc5.test
+8 −8 test/mmap1.test
+51 −0 test/mmapcorrupt.test
+5 −5 test/quote.test
+1 −1 test/shell4.test
+148 −0 test/shell9.test
+10 −1 test/tester.tcl
+1 −1 test/tkt-8454a207b9.test
+28 −2 test/types3.test
+2 −0 test/unionall.test
+40 −1 tool/lemon.c
+75 −57 tool/lempar.c
+210 −230 tool/sqldiff.c
+47 −0 tool/sqlite3_analyzer.c.in
Loading

0 comments on commit 778b5a4

Please sign in to comment.