]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2014-05-07  drhFix nolock and immutable so that they work even if... win32-none
2014-05-07  drhAdd test cases and documentation for the nolock and...
2014-05-01  drhTake out the special handling of nolock=true in os_win...
2014-05-01  drhAvoid unnecessary xUnlock operations on temp file.
2014-05-01  drhAdd the immutable=TRUE query parameter and SQLITE_IOCAP...
2014-04-30  drhMerge in all recent changes and enhancements from trunk.
2014-04-30  danFix a problem in calculating the costs of "OR" scans.
2014-04-30  danModify the way the costs of various query plans are...
2014-04-30  danAdd text to the header comment of whereLoopAddBtree... experimental-costs
2014-04-30  danUpdate a couple of test cases to account for the fact...
2014-04-30  danFix a couple of out-of-date comments in where.c.
2014-04-30  drhImproved rendering of LogEst values corresponding to...
2014-04-30  drhFix long-standing typos in comments.
2014-04-29  danTest that the default values used when sqlite_stat1...
2014-04-29  danMerge trunk changes into this branch.
2014-04-29  danIgnore likelihood() values on indexed IPK lookups.
2014-04-29  danFix a test case so that it updates sqlite_stat1 consist...
2014-04-28  danDo not reduce the number of rows scanned at all for...
2014-04-28  danThe trunk assumes that an open range constraint on...
2014-04-28  drhAdd the sqlite3_rtree_query_callback() API to the RTree...
2014-04-28  danUpdate unordered.test to take into account for the...
2014-04-28  danAdd an extra column to a table in analyze9.test to...
2014-04-28  danUpdate test script analyze3.test to account for the...
2014-04-28  danModify internal function whereLoopAdjustCost() so that...
2014-04-28  danFix an error in estimating of the number of rows visite...
2014-04-26  danFix an sqlite3_stmt_status() problem caused by recent...
2014-04-26  drhUpdate requirements marks to fix typos in the requireme...
2014-04-26  drhAllow the xfer optimization to proceed if the DEFAULT...
2014-04-26  danAvoid transfering records between tables unless the...
2014-04-25  danIf the user provides likelihood() data for a WHERE...
2014-04-25  drhAdd test cases to ensure correct operation of joins...
2014-04-25  danStore values loaded from the stat1 table as logarithmic...
2014-04-25  drhMake sure ORDER BY clauses on joins that involve virtua...
2014-04-25  drhWhen VDBE_PROFILE is enabled, ignore negative opcode...
2014-04-24  danChanges to the way the planner calculates the costs...
2014-04-22  drhChange from using the win32-none VFS to just a query...
2014-04-22  mistachkinAdd some OSTRACE calls for consistency.
2014-04-22  drhAdd the win32-none VFS which omits rollback-journal...
2014-04-21  drhComment tweaks on the test case for the [b75a9ca6b0...
2014-04-21  danAvoid discarding an ORDER BY clause in the case where...
2014-04-18  drhClean up the proper-subset cost adjustment logic to...
2014-04-18  drhAdd the SQLITE_RUNTIME_BYTEORDER compile-time option...
2014-04-18  drhAdd the SQLITE_TESTCTRL_BYTEORDER test control to inter...
2014-04-14  drhMake sure the undocumented sqlite_rename_parent() funct...
2014-04-13  drhRemove the unused second argument from sqlite3ExprCache...
2014-04-13  drhMake sure column cache elements are cleared correctly...
2014-04-10  drhModify the OR-clause handling so that it can safely...
2014-04-04  drhPerformance improvements when reading large blobs,...
2014-04-04  drhMerge changes to the query planner that strive to ensur...
2014-04-04  drhEnsure the "PRAGMA journal_mode=WAL" works coming from...
2014-04-03  drhUse OP_Copy instead of OP_SCopy when moving results...
2014-04-03  drhFix a typo in the "Synopsis:" comment for the OP_VFilte...
2014-04-03  drhIn the command-line shell, run set writable_schema...
2014-04-01  drhRemove an unnecessary conditional, replacing it with... overflow-pgno-cache
2014-03-31  drhFix a compiler warning when SQLITE_DIRECT_OVERFLOW_READ...
2014-03-31  drhMerge in the latest changes and fixes from trunk.
2014-03-31  drhRemove an unnecessary conditional. query-plan-experiments
2014-03-31  drhAlso make sure an index that is a proper subset of...
2014-03-31  drhMake sure that an index that covers a proper superset...
2014-03-31  drhAvoid a (harmless) buffer overread that is possible...
2014-03-29  drhExperiments in picking better query plans, especially...
2014-03-28  drhDisable the wal64k.test script for non-unix systems...
2014-03-28  drhFix a harmless compiler warning.
2014-03-28  drhEnhance the sqlite3VdbeRecordCompare() routines so...
2014-03-27  drhMinor cleanup of the code in the query planner that...
2014-03-27  drhEnhance the logest.c utility with new operators: "dup...
2014-03-26  danAdd an extra test case for the potential buffer overrea...
2014-03-26  drhAdd a test case to verify that the previous change...
2014-03-26  drhEarlier detection of corruption in sqlite3VdbeRecordCom...
2014-03-26  drhAdd an assert() and a comment to clarify the operation...
2014-03-25  drhAdjust the repeat counts on several tests in speedtest1...
2014-03-25  drhAdd another performance test case to speedtest1. This...
2014-03-25  drhAdd an ORDER BY test case to speedtest1.c
2014-03-25  drhDetect when a VdbeCursor is still pointing at a valid...
2014-03-24  danRemove unused variables Parse.nColCache and Parse.iColC...
2014-03-24  drhFix arithmetic operators so that they do not change...
2014-03-24  danAvoid attempting to mmap memory from an offset that...
2014-03-23  drhAvoid a possible use of an uninitialized variable follo...
2014-03-22  drhClear the sort-order flags on the KeyInfo object associ...
2014-03-22  drhIncrease the version number to 3.8.5.
2014-03-22  drhFix the ORDER BY optimization logic so that it will...
2014-03-21  drhAdd the ability to use indices for the first few terms...
2014-03-21  drhChange the names of SRT_DistTable and SRT_Table used...
2014-03-21  danAvoid leaking memory in an obscure case where the flatt...
2014-03-21  drhMerge the OFFSET-on-query-without-FROM fix from trunk.
2014-03-21  drhFix the OFFSET clause so that it works correctly on...
2014-03-21  drhNew test case for block-sorting.
2014-03-20  drhMerge trunk fixes for "x IN (?)" handling.
2014-03-20  drhRemove a testcase() that is now always true due to...
2014-03-20  danOnly use the direct-overflow-read optimization if all...
2014-03-20  drhFix the EXPLAIN indenter in the command-line shell...
2014-03-20  drhThe "x IN (?)" optimization in check-ins [2ff3b25f40...
2014-03-20  drhFix harmless compiler warnings.
2014-03-20  drhPrevious check-in is not quite correct. "x IN (?)...
2014-03-20  drhConvert expressions of the form "X IN (?)" with exactly...
2014-03-20  drhFix an unnecessarily obtuse use of a bitmask flag.
2014-03-20  danAdd a test to ensure os_unix.c works with 64KiB OS... shm-mapping-fix
2014-03-20  danAdd an experimental fix to avoid attempting to mmap...
2014-03-19  drhMerge the vdbesort.c optimization from trunk.
2014-03-19  drhFix query planner weights associated with choosing...
next