]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
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...
2013-05-31  drhFuther enhancements to the ORDER BY optimizer.
2013-05-31  drhImproved detection of unnecessary ORDER BY clauses.
2013-05-31  drhFix the constructAutomaticIndex() routine so that it...
2013-05-30  drhImprovements to the ORDER BY suppressor in the NGQP.
2013-05-30  drhIncremental check-in with various NGQP fixes. Many...
2013-05-30  drhFuther simplifications to the NGQP. Fix some test...
2013-05-30  drhThe expected result in a test case can be of the form...
2013-05-30  drhCut over the NGQP query planner. Remove lots of legacy...
2013-05-30  drhMerge recent trunk changes into the NGQP branch.
2013-05-29  drhUpdates to the Codec interface to support codecs on...
2013-05-29  danAdd tests for running FTS 'merge' and 'optimize' comman...
2013-05-28  drhAdd the percentile() SQL function as a loadable
2013-05-28  drhFinish removing the sqlite3.inTrans field. In the...
2013-05-28  drhRemove the obsolete and unused sqlite3.inTrans field.
2013-05-28  drhMany small harmless comment changes. Removal of obsole...
2013-05-28  danMerge autoconf-package branch with trunk.
2013-05-27  danAdd the "dist" target to main.mk. For building the... autoconf-package
2013-05-27  drhUpdate the NGQP to record which loops need be run in...
2013-05-27  danAdd the files used to build the amalgamation-autoconf...
next