]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2015-03-24  drhFurther simplifications to the amalgamation builder. stdcall
2015-03-24  mistachkinUpdate the 'mksqlite3c-noext' tool as well.
2015-03-24  mistachkinAdd SQLITE_STDCALL and SQLITE_CDECL macros on public...
2015-03-24  drhSuppress a compiler warning that was appearing with...
2015-03-24  drhPrevent a virtual table from being destroyed while...
2015-03-24  danAdd tests to check that attempting to DROP a virtual... nVDestroy
2015-03-24  drhSimplify the EXPLAIN output of virtual table P4 paramet...
2015-03-24  drhMore defenses against virtual table being deleted out...
2015-03-24  drhPrevent a virtual table from being destroyed while...
2015-03-24  drhReplace the Vdbe.inVtabMethod field with the sqlite3...
2015-03-23  drhDisable loadable extensions in the command-line shell...
2015-03-23  drhTrack total memory usage using a 64-bit integer on...
2015-03-23  drhFix a non-C89 variable declaration that causes problems... status64
2015-03-23  drhFix datetype size asserts in btree.c.
2015-03-23  drhAdd the SQLITE_PTRSIZE macro. Use it to help sqlite3_s...
2015-03-23  drhAdd the sqlite3_status64() interface. Make the new...
2015-03-22  drhFix a potential NULL pointer dereference following...
2015-03-21  mistachkinFix harmless compiler warnings with MSVC when assert...
2015-03-21  mistachkinAdd more comments to the MSVC batch build tool.
2015-03-21  mistachkinIncrease the debugging level for the debug configuratio...
2015-03-21  drhDo not invoke a C preprocessor macro with an empty...
2015-03-21  drhAdd a missing "int" on a constant declaration.
2015-03-21  danAvoid a segfault if NULL is passed as the first argumen...
2015-03-21  danChange walblock.test to block an external process for...
2015-03-21  drhFix the blocking WAL lock so that it works and so that...
2015-03-21  danRemove an unreachable branch from the OP_VCreate opcode...
2015-03-21  danAvoid an integer overflow in fts3 causing gcc 4.7.1...
2015-03-21  drhRemove an unreachable branch from the OP_VCreate opcode.
2015-03-21  danAdd a missing "ifcapable fts3" to a test case in vtab2...
2015-03-21  drhCorrectly detect the error of having a "*" wildcard...
2015-03-21  drhIf a column is both UNIQUE and a PRIMARY KEY, make...
2015-03-21  mistachkinRemove superfluous define from the MSVC makefile.
2015-03-21  mistachkinImprovements to the MSVC build. Fix harmless compiler...
2015-03-20  drhProvide the BTREE_SEEK_EQ hint to the b-tree layer.
2015-03-20  drhFix to get SQLITE_SMALL_STACK working correctly again... seek-eq
2015-03-20  drhProvide the BTREE_SEEK_EQ hint to the b-tree layer.
2015-03-20  danFix a problem causing collation sequence names to be...
2015-03-19  drhIf a virtual table is created with a malformed UTF8...
2015-03-19  danFix a crash that can occur following an OOM condition... malformed-vtab-name
2015-03-19  danFix a problem with creating virtual table with names...
2015-03-19  danFix an FTS3/4 problem with handling empty tokenizer...
2015-03-19  danSilently ignore any attempt to add a prefix index for...
2015-03-19  danAdd an assert() to check that the database mutex is...
2015-03-19  mistachkinFix typo in shell error message.
2015-03-19  drhFix a bug in error handling in the ".trace" command...
2015-03-18  drhAdd another sqlite3FaultSim() to the multi-threaded...
2015-03-17  drhClarify the documentation on sqlite3_errcode(). No...
2015-03-17  drhAlso merge the WAL blocking lock tests that were someho...
2015-03-17  drhTransient locks in WAL mode can now block in order...
2015-03-17  danAdd a test for the change on this branch. wal-blocking-lock
2015-03-16  danMake SQLite slightly more likely to use an auto-index...
2015-03-16  mistachkinFix typo of test prefix in the new WHERE test file.
2015-03-16  drhWhen the WHERE clause contains two OR-connected terms...
2015-03-16  drhModify the fts3query.test script so that it works even...
2015-03-16  drhWhen deleting the master journal to commit a multi...
2015-03-16  danWhen estimating the number of rows visited by a range...
2015-03-16  drhUse #ifdef to omit code that is only used for STAT3...
2015-03-16  drhImproved comments. No code changes. combine-disjuncts
2015-03-16  drhWhen a WHERE clause contains disjuncts with the same...
2015-03-16  danAnother test case for the planner change on this branch. stat4-change
2015-03-14  danWhen estimating the number of rows visited by a range...
2015-03-13  danAdd tests to ensure "PRAGMA incremental_vacuum" and...
2015-03-13  danExtra tests for commit [0f250957].
2015-03-13  drhRemove debugging logic accidently included in the previ...
2015-03-12  drhFix the "now" option for date-time functions for cases...
2015-03-12  drhWhen STAT4 is enabled, allow probes of the STAT4 table...
2015-03-12  drhAlways disallow functions as the DEFAULT of a column... stat4-function
2015-03-12  danDisable multiplexing of master-journal files in the...
2015-03-12  drhIf an error occurs in the compile-time evaluation of...
2015-03-12  drhThe valueFromFunction() routine is better able to handl...
2015-03-12  drhImprove the text on one of the opcode documentation...
2015-03-11  danAllow the default value for columns added using ALTER...
2015-03-11  danAllow the query planner to evaluate deterministic scala...
2015-03-11  drhExpand the multi-process test cases to repeat each...
2015-03-10  drhArrange for some of the transient locks in WAL mode...
2015-03-10  drhFix an incrblob2 test case so that it works on 32-bit...
2015-03-10  drhRevise test cases in malloc5.test to accommodate varyin...
2015-03-09  drhFix the LIKE optimization so that it works even if...
2015-03-09  drhAlways use LIKE optimization range constraints in pairs. like-opt-fix
2015-03-09  drhIncrease the version number to 3.8.9
2015-03-07  drhFix another problem with the LIKE optimization.
2015-03-07  drhFix the LIKE optimization so that it finds BLOB entries...
2015-03-07  drhNew test cases for LIKE and GLOB with BLOB left-hand...
2015-03-07  drhRemove some code that is commented out.
2015-03-07  drhFix problems with reverse order sorting and indexes...
2015-03-07  drhRefactor some jump opcodes in the VDBE. Add JumpZeroIn...
2015-03-06  drhTest cases added. Comments fixed. Proposed solution for
2015-03-06  drhFix the LIKE optimization even when comparing mixed...
2015-03-06  drhThe LIKE optimization must be applied twice, once for...
2015-03-06  drhClearification of some documentation text. Added requi...
2015-03-06  drhClarification of documentation on sqlite3_backup.
2015-03-05  drhNew test cases and requirements marks for PRAGMA index_...
2015-03-05  drhRevert "PRAGMA index_info" to output only three columns...
2015-03-05  drhNew requirements marks on compound SELECT statements.
2015-03-04  drhNew requirements marks on INSERT and INDEXED BY and...
2015-03-04  mistachkinFix harmless compiler warning.
2015-03-04  drhRefinement to the wording of the documentation on depre...
2015-03-04  drhRemove a surplus </dl> mark in the documentation...
2015-03-03  drhClean up #ifdef logic dealing with VxWorks in os_unix...
2015-03-03  drhFix compiler warnings when compiling under VxWorks 7.
next