]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2012-10-08  drhFurther tweaks to the ORDER BY optimizer, to fix a...
2012-10-08  drhBug fixes in the ORDER BY optimizer.
2012-10-08  drhContinued refactoring of the ORDER BY optimization...
2012-10-04  drhYet another refactoring of ORDER BY logic in the query...
2012-10-03  drhFix an out-of-order memset() that occurs before all...
2012-10-03  drhUpdate the query planner to recognize more cases where...
2012-10-03  drhFix a query planner problem that only occurs when cover...
2012-10-03  drhFix the TCL interface so that SQL functions implemented...
2012-10-03  drhFurther attempts to optimize out unnecessary ORDER...
2012-10-02  mistachkinWork around an optimization issue with the MSVC compile...
2012-10-02  drhMore lenient handling of ORDER BY optimization in joins...
2012-10-02  drhOnly continue an ORDER BY optimization into inner loops...
2012-10-02  drhFactor an invariant out the loop termination condition...
2012-10-02  drhMake sure the outer loop cursor numbers are recorded...
2012-10-02  drhImprovements to the wheretrace output.
2012-10-01  drhFix harmless compiler warnings.
2012-10-01  mistachkinFix several compiler warnings seen with MSVC. msvcWarnings
2012-10-01  danAdd SQLITE_FCNTL_BUSYHANDLER. Invoked to provide access...
2012-10-01  drhMinor changes to the query planner for improved test...
2012-10-01  drhOmit the sqlite3GetReservedNoMutex() routine in build...
2012-10-01  drhMake sure the size parameter to read and write VFS...
2012-10-01  danEnsure that the value returned by xSectorSize() is...
2012-09-29  drhImproved ORDER BY optimization when outer loops of...
2012-09-29  drhDisable the bigfile tests on Macs.
2012-09-29  drhFix compiler warnings found on Lion.
2012-09-28  danAvoid calling sqlite3BtreeEnter() in a corner case...
2012-09-28  mistachkinModify the clearCell function to use SQLITE_CORRUPT_BKP...
2012-09-28  drhQuery planner enhancements to be more agressive about...
2012-09-27  drhFix some corner case behavior in the new ORDER BY optim...
2012-09-27  mistachkinModify generation of resource header file for MSVC...
2012-09-27  drhMore test cases an bug fixes for the ORDER BY optimizat...
2012-09-27  drhTest cases and bug fixes applied to the ORDER BY optimi...
2012-09-27  drhAdd more bits to the bit vector that is used to disable...
2012-09-27  drhEnable ORDER BY clauses that span joins to be optimized...
2012-09-27  drhMerge the "PRAGMA busy_timeout" change into trunk.
2012-09-27  drhFurther tweaks to the query planner logic in preparatio...
2012-09-26  drhFurther refactoring of the ORDER BY related query-plann...
2012-09-25  drhAugment the WhereBestIdx structure to pass down into...
2012-09-25  drhPass information around between the major routines...
2012-09-24  drhRemove an unused subfunction parameter and an obsolete...
2012-09-24  drhChange the internal sqlite3WhereBegin() to report that...
2012-09-24  drhUpdate documentation to describe the threadsafety of
2012-09-21  drhEnable query planner tracing using the new (and undocum...
2012-09-21  drhCommand-line shell enhancements: Added the ".print...
2012-09-21  drhConsolidate more of the DISTINCT processing logic into...
2012-09-20  drhContinuing incremental enhancements of SELECT code...
2012-09-20  drhRefactoring of DISTINCT code. Change the name of the...
2012-09-19  drhTighter VDBE code for the WHERE_DISTINCT_ORDERED case...
2012-09-19  drhAdd comments to the WHERE_DISTINCT_* macros. No change...
2012-09-19  drhMerge the covering-index-scan optimization into trunk.
2012-09-18  mistachkinSilence harmless compiler warning seen with SQLITE_OMIT...
2012-09-18  drhEnhance IN processing to allow efficient use of indices...
2012-09-18  drhEnhancements to the comments on sqlite3FindInIndex...
2012-09-18  drhAdd the stack_usage.tcl script for analyzing the output...
2012-09-18  drhUpdate the vdbe-compress.tcl script so that it accepts...
2012-09-17  drhMake sure the WHERE_IDX_ONLY flag is not set on query... fullscan-covering-index
2012-09-17  drhAdd the ability to disable the covering-index-scan...
2012-09-17  drhMerge recent trunk changes into the fullscan-covering...
2012-09-17  drhRemove obsolete bits from the bitvector that defines...
2012-09-17  drhRemove an unnecessary parameter from sqlite3Utf8Read...
2012-09-17  drhMake sure the KeyInfo.aSortOrder array is always alloca...
2012-09-17  drhPerformance enhancement in the sqlite3VdbeSerialType...
2012-09-15  drhAttempt to use a covering index even on a full table...
2012-09-15  drhMake sure the name of rollback journal files are double...
2012-09-15  drhFactor out the code that generates a co-routine for...
2012-09-13  drhImproved alignment of fields in the Expr object gives...
2012-09-13  mistachkinFix WAL capability checking in one of the test files.
2012-09-13  mistachkinFix an unused variable warning with SQLITE_OMIT_WAL.
2012-09-13  mistachkinImproved reporting of filename translation errors in...
2012-09-13  drhReduce the size of the Table object by 16 bytes on...
2012-09-13  drhChange boolean fields in the Column object from unsigne...
2012-09-13  drhAdd the RTREE_INT_ONLY configuration parameter to the...
2012-09-13  mistachkinAllow SQLite to work on Win32 with SQLITE_OS_WINNT...
2012-09-12  drhUpdate version number to 3.7.15. Delete some obsolete...
2012-09-11  mistachkinAdded sqlite3_errstr API to translate a result code...
2012-09-10  mistachkinCorrect two duplicated test names.
2012-09-10  drhRemove the stale implementation of the ifnull and coale...
2012-09-10  mistachkinAvoid using the sqlite3ErrStr function in the Tcl packa...
2012-09-10  mistachkinMake header comments for some Tcl test commands more...
2012-09-10  mistachkinRefine error messages in the sqlite3 Tcl command when...
2012-09-10  mistachkinFix typo in documentation for sqlite3_open_v2. No...
2012-09-07  mistachkinCorrect two test names to make them unique. busy-timeout-pragma
2012-09-07  drhHave PRAGMA busy_timeout return 0 if the busy handler...
2012-09-07  drhAdd an experimental busy_timeout pragma to facilitate...
2012-09-04  drhAvoid repeating calls to the sqlite3_trace() callback...
2012-09-03  drhVersion 3.7.14 version-3.7.14
2012-09-03  drhFix compiler warnings in test_spellfix1.c
2012-09-03  drhAdd resources describing the version number and other...
2012-09-03  mistachkinInsert additional tab character. win32Resources
2012-09-03  mistachkinLinking and cleaning fixes for the tclsqlite3.exe targe...
2012-09-03  mistachkinAdd Win32 version resources to the applicable binaries...
2012-08-31  drhIn the spellfix phonehash() function, add letter W...
2012-08-31  drhChanges for ERROR_PATH_NOT_FOUND in addition to ERROR_F...
2012-08-30  drhExclude the atof1.test test script from the valgrind...
2012-08-30  danFix an out-of-bounds read in the demonstration code...
2012-08-29  drhFix a typo in a comment in vdbe.c. No changes to code.
2012-08-28  danFix a case where SQLite was failing to detect a syntax...
2012-08-28  mistachkinIssue a log message if the temporary directory has...
2012-08-28  mistachkinEnable the use of a simpler command line when cross...
2012-08-28  drhFormatting changes to the C code example in the documen...
next