]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2013-06-22  drhAdd the ability to disable the omit-join-table optimiza... omit-join-table-opt
2013-06-21  drhOnly eliminate inner loops of a JOIN if they are the...
2013-06-21  drhAttempt to disable inner loops of a join that do not...
2013-06-21  drhModify the query planner interface so that it always...
2013-06-20  drhAdd a NEVER() macro and an explanation comment around...
2013-06-20  drhPull in the posix_fallocate() change from trunk.
2013-06-20  drhDisable posix_fallocate() for all systems, all the...
2013-06-19  drhMerge in trunk changes to os_unix.c that allow the...
2013-06-19  drhAdd in the cost of doing a table lookup on OR searches...
2013-06-19  drhOnly default HAVE_POSIX_FALLOCATE on for linux, and...
2013-06-19  drhOnly enable posix_fallocate by default on linux and...
2013-06-19  drhAdditional compiler warning fixes.
2013-06-19  drhFix a harmless uninitialized variable warning.
2013-06-19  drhSimplify and add invariants to the WhereLoop merging...
2013-06-19  drhFix compiler warnings. Fix a harmless off-by-one error...
2013-06-18  drhAdjustments to testcase() macros for improved testability.
2013-06-18  drhRemove some redundant and unreachable code.
2013-06-17  drhAdd more testcase() macros. Fix a memory leak followin...
2013-06-17  drhSimplifications to the NGQP. Add the queryplantest...
2013-06-17  drhUse automatic indices on subqueries of the FROM clause...
2013-06-15  drhFix compiler warnings.
2013-06-14  drhComment tweaks in where.c. No changes to code.
2013-06-14  drhAdd a new ORDER BY optimization that bypasses ORDER...
2013-06-13  drhAn index might be useful for ORDER BY if any indexed...
2013-06-13  drhMake sure that disabling the covering index scan optimi...
2013-06-13  drhRestore the ability to do a BETWEEN query on the rowid...
2013-06-13  drhMake the MIN() and MAX() macros available in sqliteInt...
2013-06-13  drhFix an off-by-one error in the WhereCost to integer...
2013-06-12  drhActivate the one-pass optimization. Update comments...
2013-06-12  drhBug fixes in the handling of virtual tables.
2013-06-12  drhMerge all changes from trunk.
2013-06-12  drh"make test" now passing.
2013-06-12  drhAdd the "queryplanner" test permutation. Continuing...
2013-06-12  drhContinue refining the NGQP
2013-06-11  drhImproved processing of DISTINCT.
2013-06-11  danAdd the SQLITE_FTS3_MAX_EXPR_DEPTH compile time option.
2013-06-11  drhFix the Parse.nQueryLoop state variable to work with...
2013-06-11  drhUse a logarithmic rather than linear cost and row-count...
2013-06-11  drhFixes to EXPLAIN QUERY PLAN output. Change weights... nextgen-query-plan-logcost
2013-06-11  drhHandle virtual tables correctly when using logarithmic...
2013-06-10  drhFix test cases for the new EXPLAIN QUERY PLAN format...
2013-06-10  drhFix some minor issues with logarithmic cost in NGQP.
2013-06-10  drhFirst attempt to store costs and row counts as a logarithm.
2013-06-10  drhSimplification and performance tweak to the high-speed...
2013-06-10  drhPerformance improvements for whereScan methods.
2013-06-10  drhAdd a high-speed bypass for the NGQP for the common...
2013-06-10  drhMinor problems in the high-speed NGQP fixed. nextgen-query-plan-fast
2013-06-09  drhFix the memory leak in CREATE TABLE that occurs if...
2013-06-09  drhAdd test cases to demonstrate the memory leak on the... memleak
2013-06-09  drhHigh-speed version of NGQP. Still has some minor problems.
2013-06-08  drhCandidate fix for a memory leak that occurs if a CREATE...
2013-06-07  mistachkinImprove manual cleaning step performed by the multi...
2013-06-07  drhMust faster computation of estimated logarithm.
2013-06-07  drhFurther prepare-time performance improvements.
2013-06-06  drhPerformance improvements.
2013-06-06  drhImproved management of the space to hold WhereLoop...
2013-06-06  drhRemove some commented-out code that was mistakenly...
2013-06-06  drhClean up and reorganize the elements of the various...
2013-06-05  drhMove the definitions of the WhereLevel and WhereInfo...
2013-06-05  drhPerformance improvement for the OR-clause analysis...
2013-06-05  drhMinor performance tuning of the NGQP.
2013-06-05  danUp until now the fts4 "unicode61" tokenizer has treated...
2013-06-05  drhPerformance tweak to whereLoopInsert().
2013-06-05  drhAdd a test case contributed on the mailing list
2013-06-04  drhUpdate some variable names and comments in the ORDER...
2013-06-04  drhRestore the PRAGMA reverse_unordered_selects behavior.
2013-06-04  drhGet the index-only optimization working for OR queries.
2013-06-04  drhTest case updates.
2013-06-04  drhBetter determination of when an index is UNIQUE.
2013-06-04  drhIncrease the estimated full-scan cost for an FTS3 table.
2013-06-04  drhFix a display issue with EXPLAIN QUERY PLAN.
2013-06-04  drhRefactor the ORDER BY optimizer in the NGQP so that...
2013-06-03  drhRemove more vestiges of sqlite_query_plan from the...
2013-06-03  drhAdjust the xBestIndex methods on both the fuzzer and...
2013-06-03  drhPull in recent trunk changes. Fix the ORDER BY optimiz...
2013-06-03  drhFix a typo in a collating function inside the e_reindex...
2013-06-03  drhDo not use an index fullscan for an UPDATE or DELETE...
2013-06-03  drhResolve ambiguities in test cases in collate2.test.
2013-06-03  drhFix a bug in the transitive_closure virtual table that...
2013-06-03  drhFix EXPLAIN QUERY PLAN row counts for the rtree virtual...
2013-06-03  drhUpdate the NGQP to make use of STAT3 information if...
2013-06-03  drhHonor the orderByConsumed boolean returned from virtual...
2013-06-03  drhFix to the logic that disables constraints on virtual...
2013-06-03  drhFix an issue that was causing ORDER BY DESC to come...
2013-06-03  drhVirtual tables now always report 25 rows instead of...
2013-06-03  drhSet the WHERE_UNIQUE flag on loops that can only run...
2013-06-03  drhAdd test cases to verify that ticket [bc1aea7b725f2761...
2013-06-03  drhEnhance the shell to provide more flexibility when...
2013-06-03  drhFurther improvements to error handling of the run-time...
2013-05-31  drhThe NGQP might not find a solution if INDEXED BY constr...
2013-05-31  drhDo not search using ON clause constraints of LEFT JOINs...
2013-05-31  drhMake sure a unique cursor number is allocated for autom...
2013-05-31  drhDo not attempt to generate code in the NGQP if there...
2013-05-31  drhFix a problem with code generation on LEFT JOIN of...
2013-05-31  drhAnother virtual table fix in NGQP.
2013-05-31  drhFix problems in the virtual table logic for NGQP.
2013-05-31  drhRemove the definitions of objects that are no longer...
2013-05-31  drhImproved handling of errors when doing run-time loading...
2013-05-31  drhAllow tracing of whereLoopInsert() when the 0x8 bit...
2013-05-31  drhEnhance the shell to provide more flexibility when...
next