]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2014-11-01  danMinor fixes and documentation improvements for sqlite3_...
2014-10-31  danAdd the experimental sqlite3_stmt_scanstatus() API.
2014-10-31  drhChange the command-line shell man-page to use the ...
2014-10-31  drhSimplify the logic in the cell redistribution loop...
2014-10-31  drhSimplify the math slightly, and reduce by one the numbe...
2014-10-31  drhAdd the "varint.c" utility program in the tool directory.
2014-10-31  drhRemove an unnecessary branch from balance_nonroot().
2014-10-31  drhIn the balance_nonroot() routine, protect the values...
2014-10-30  drhImprovements to the wording of some comments. Reinstat...
2014-10-30  drhTweaks to comments in btree.c. Minor code changes...
2014-10-29  drhFix the %c format character in sqlite3VXPrintf() so...
2014-10-29  drhIn the OP_Column opcode, when extracting a field that...
2014-10-28  danAdd new test file e_totalchanges.test, containing tests...
2014-10-28  drhUpdate the documentation on the sqlite3_randomness...
2014-10-28  danModify the documentation for sqlite3_changes() to make...
2014-10-28  danFix a crash that could occur if the WHERE clause of...
2014-10-28  drhFix a faulty assert() in the DELETE code generator.
2014-10-28  drhTrivial simplification to the automatic index logic.
2014-10-28  drhBump the version number to 3.8.8
2014-10-28  drhCorrect the documentation on the maximum size of a...
2014-10-27  mistachkinAdd special handling for static mutexes in sqlite3_mute...
2014-10-27  drhRemove a small amount of unnecessary #ifdeffery from...
2014-10-27  mistachkinFix compilation issue with MSVC due to a misplaced...
2014-10-27  mistachkinFix harmless compiler warning in an assert statement.
2014-10-27  drhFix a typo in the macro name of an #ifdef
2014-10-27  drhAdd the SQLITE_ENABLE_API_ARMOR compile-time option...
2014-10-27  drhFix an unused variable in btree.c:allocateSpace().
2014-10-27  danOptimizations aimed at reducing the number of memcpy...
2014-10-27  danAdd test file e_wal.test.
2014-10-27  danIf a free-slot is found within a page, but using that... defrag-opt
2014-10-27  danMerge trunk with this branch.
2014-10-25  danFurther modifications to new code to better handle...
2014-10-25  drhIncrease the resolution of the second parameter to...
2014-10-25  drhDo not use virtual (and hence redundant) WHERE-clause...
2014-10-24  danEnsure that the "Any prior cache entry associated with...
2014-10-24  drhEnhance the automatic index logic so that it creates...
2014-10-24  danFix some issues in the new code on this branch related...
2014-10-24  danFix some minor formatting and code organization issues.
2014-10-24  drhHonor a high likelihood() on range constraints.
2014-10-24  drhGet the likelihood() functions working on operators...
2014-10-24  drhFix two problems. Tests now passing. api-armor
2014-10-24  drhAdd the SQLITE_ENABLE_API_ARMOR compile-time option...
2014-10-23  drhImplement sqlite3_create_collation() by invoking
2014-10-22  drhDisable the use of strchrnul() unless specifically...
2014-10-22  drhChange the 0x800 bit of SQLITE_TESTCTRL_OPTIMIZATIONS...
2014-10-22  danMerge latest trunk with this branch.
2014-10-22  drhTake steps to avoid misestimating range query costs...
2014-10-21  drhCall fsync() right after ftruncate() when in journal_mo...
2014-10-21  drhFurther tuning of the cost estimates for skip-scan...
2014-10-21  drhImprovements to the WHERETRACE debugging logic.
2014-10-21  drhIf a skip-scan is a proper subset of some other scan...
2014-10-17  drhFix a (probably harmless) but in the CSV output mode...
2014-10-17  drhVersion 3.8.7 version-3.8.7
2014-10-16  mistachkinWork around MSVC not being able to deduce that a local...
2014-10-16  mistachkinChanges to work around Win32 and MSVCRT APIs that are...
2014-10-16  danUpdate the vdbe-compress.tcl script to account for...
2014-10-15  danUpdate releasetest.tcl so that x86-64 runs a superset...
2014-10-15  danFix a problem causing lock5.test to fail in mmap-mode.
2014-10-15  drhAdd a four-byte prefix to the BtShared.pTmpSpace buffer...
2014-10-15  danRearrange an expression in vdbemem.c to avoid a (harmle...
2014-10-14  drhMake sure new sqlite3_vtab objects created by the xCrea...
2014-10-14  danFix some code duplication issues on this branch. Add...
2014-10-13  drhOptimize a database corruption test inside of the OP_Co...
2014-10-13  drhUse the padding word in the Mem object as temporary...
2014-10-13  danMerge trunk changes into this branch.
2014-10-13  danFurther work on balance_nonroot().
2014-10-13  drhThree small optimizations to vdbeaux.c.
2014-10-13  drhReduce the CPU load imposed by sqlit3VdbeCursorMoveto...
2014-10-13  drhRemove the OPFLAG_CLEARCACHE flag from OP_Column. ...
2014-10-12  drhRemove the VdbeCursor.lastRowid cache of the current...
2014-10-11  drhPerformance optimization and very slight size reduction...
2014-10-11  danAttempt to further reduce memcpy() in balance_nonroot().
2014-10-11  drhSimplification to the insertCell() routine in btree...
2014-10-11  drhRequire the SQLITE_ENABLE_RTREE compile-time option...
2014-10-11  drhMake sure that a GROUP BY that also implements an ORDER...
2014-10-11  drhRemove an unnecessary conditional from the EXPLAIN...
2014-10-10  danAccount for the ASC/DESC properties of ORDER BY express... experimental
2014-10-10  drhRestrict the scope of the explainIndexRange() function...
2014-10-10  danFix a failing test case in index5.test. Also tweak...
2014-10-10  drhChanges to enable compiling using VC6.
2014-10-10  drhWhen using the -config option to releasetest.tcl, defau...
2014-10-10  drhProvide the new "-config CONFIG" option to the test...
2014-10-10  drhAdd the estimated number of output rows to the EXPLAIN...
2014-10-10  drhSimplify the code used to generate the text for EXPLAIN...
2014-10-10  drhFix a potential problem in the whereRangeScanEst()...
2014-10-10  drhCause the command-line shell to return non-zero if...
2014-10-09  danChange the balance_nonroot() routine to reduce the...
2014-10-09  danAllow FTS tokenizers to choose whether or not to consid...
2014-10-09  drhAdd a test case for the memory leak fixed by the previo...
2014-10-09  drhFix a memory leak associated with the FTS4 matchinfo...
2014-10-08  drhRemove an always-true branch in whereRangeScanEst(...
2014-10-08  drhFix up test cases to account for the new SQLITE_LIMIT_W...
2014-10-08  drhSet the connection-specific lastRowid value before...
2014-10-08  drhEnsure that the Pager.pTmpSpace allocation is correct...
2014-10-08  danRemove some temporary code in mallocA.test that was...
2014-10-08  drhFix the STAT4 range scan estimates for DESC indexes.
2014-10-08  drhMore intuitive labels on ".wheretrace" output.
2014-10-07  drhMake sure the sqlite3VdbeMemClearAndResize() routine...
2014-10-07  drhFix the corruptI.test script so that it works with
2014-10-07  drhRestrict the scope of the valueToText() routine.
next