]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2013-07-10  drhExperimental "PRAGMA query_only=BOOLEAN" statement... query_only
2013-07-10  drhRun progress callback checks less frequently in the...
2013-07-09  drhAdjust the costs in the xBestIndex function of the...
2013-07-09  drhModify several extensions to use the new exported funct...
2013-07-09  drhMake sure the schema is verified prior to processing...
2013-07-08  drhMake sure an adequate number of digits are shown for...
2013-07-08  drhFix an adverse interaction between the IS NOT NULL...
2013-07-08  drhAdd an optional 5th parameter to the next_char() functi...
2013-07-06  danFixes for test cases running in the "mmap" permutation.
2013-07-06  danDrop any existing mapping of the database file when...
2013-07-05  danFix two test script problems revealed by permutations...
2013-07-05  danReplace an erroneous SQLITE_OMIT_VIRTUAL_TABLE in vdbea...
2013-07-05  danAdd missing "static" qualifier to functions in where.c.
2013-07-05  danMake a couple of implicit casts explicit to fix compile...
2013-07-04  mistachkinModify several extensions to use the new exported funct... extRefactor
2013-07-02  drhRemove a surplus local variable
2013-07-02  danFix a minor typo in a comment in where.c.
2013-07-02  drhFix harmless typos in comments of two extensions.
2013-07-01  drhAdd a query planner test case submitted by Elan Feingol...
2013-07-01  drhAdd a missing test that prevented double LEFT JOINs...
2013-07-01  drhFurther minor comment corrections and enhancements...
2013-07-01  drhMake a trivial comment fix in where.c.
2013-06-30  drhFix an issue in the command-line shell with CSV import...
2013-06-29  drhFix the build of the command-line shell on windows...
2013-06-28  drhIssue the new SQLITE_WARNING_AUTOINDEX warning on the...
2013-06-28  drhAdd the SQLITE_DEFAULT_AUTOMATIC_INDEX compile-time...
2013-06-28  danAllow read transactions to be freely opened and closed...
2013-06-28  drhAdd a bit to the SQLITE_TESTCTRL_OPTIMIZATIONS option...
2013-06-28  drhFix an issue with the OmitNoopJoin optimization and...
2013-06-28  drhRefactor the Vdbe.noIO field as Vdbe.bIsReader. The...
2013-06-27  drhRefactor names of fields in the sqlite3 object: "activ...
2013-06-27  danFix an error in e_expr.test.
2013-06-27  drhMake sure that sqlite3_stmt_readonly reports false for
2013-06-27  danAdd a test to ensure that if BEGIN IMMEDIATE fails...
2013-06-27  drhIf the filename argument to the ".import" command in...
2013-06-27  drhImproved handling of backslash escapes on double-quoted...
2013-06-27  drhThe undocumented and unsupported ".selftest" command...
2013-06-27  danAdd extended error code SQLITE_BUSY_SNAPSHOT - returned...
2013-06-26  drhUpdate the ".import" command of the command-line shell...
2013-06-26  drhAdd the "vtshim" extension, implementing a wrapper...
2013-06-26  danUpdate the boundary3.tcl script so that it can be run...
2013-06-26  drhAdd the SQLITE_STMTSTATUS_VM_STEPS option for sqlite3_s...
2013-06-26  drhOmit tables from the FROM clause of a join if their...
2013-06-26  drhCut over the next generation query planner. Increase...
2013-06-26  drhFix an uninitialized variable detected by valgrind... nextgen-query-plan-exp
2013-06-25  drhAdd a new (experimental) sqlite3_stmt_status() verb... status-vm-step
2013-06-22  drhAdd the ability to disable the omit-join-table optimiza... omit-join-table-opt
2013-06-21  mistachkinEnhance error message handling for the vtshim module. disposable-vtable
2013-06-21  drhRemove an unused function declaration from the FTS3...
2013-06-21  danMerge the fts4-notindexed branch with the trunk.
2013-06-21  danAdd a few more tests for the fts4 notindexed option. fts4-notindexed
2013-06-21  danAdd the "notindexed" option to fts4.
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-20  mistachkinThe vtshim xCreate and xConnect functions need to store...
2013-06-20  mistachkinIntegration adjustments for the vtshim module.
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-13  drhAdd a prototype for an extension that sits in between...
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...
next