]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2009-06-16  danielk1977Leave out a redundant line in build.c. Ticket #3916...
2009-06-16  danielk1977Remove a duplicate assert from btree.c. Ticket #3915...
2009-06-15  drhAdditional updates to the symbol resolver and expressio...
2009-06-15  drhChanges to allow a clean compile with no floating-point...
2009-06-15  drhUpdates to resolve.c to facilitate full coverage testin...
2009-06-15  shaneFix compiler warnings with MSVC build. (CVS 6761)
2009-06-15  drhVersion 3.6.15 (CVS 6760) version-3.6.15
2009-06-15  drhUpdate the configuration script for version 3.6.15...
2009-06-14  drhDetect database corruption and abort balance_nonroot...
2009-06-12  drhChange lemon so that it does not generate yytestcase...
2009-06-12  drhThe previous check-in ((6755)) put in more yytestcase...
2009-06-12  drhThe lemon parser generator now inserts yytestcase(...
2009-06-12  drhIn lemon: omit unused entries from the end of the yyFal...
2009-06-12  drhEnable the SQLITE_LIMIT_FUNCTION_ARG limiter. (CVS...
2009-06-12  drhRemove a C++-ism from the code. Ticket #3912. (CVS...
2009-06-12  drhAn additional memory leak in the parser fixed. Ticket...
2009-06-12  drhMake sure nested queries with USING clauses do not...
2009-06-12  drhModifications to the parser to eliminate unreachable...
2009-06-11  drhHonor the SQLITE_OPEN_READONLY flag even on a :memory...
2009-06-11  drhAdd an ALWAYS() to a conditional in where.c. (CVS 6747)
2009-06-11  drhChanges to reenable codec operation and to handle memor...
2009-06-10  drhDo not let the reverse_unordered_selects pragma force...
2009-06-10  drhRemove a NEVER() that can sometimes occur on an OOM...
2009-06-10  danielk1977Minor tweak to balance_quick() to save a few instructio...
2009-06-09  drhRemove the actual checks that verify that memory pools...
2009-06-09  shaneFix compiler warnings with MSVC build. (CVS 6741)
2009-06-09  shaneAvoid a false failure report in the test scripts caused...
2009-06-09  drhRequire that the buffer specified by SQLITE_CONFIG_HEAP...
2009-06-09  drhChanges to tokenize.c to facilitate full coverage testi...
2009-06-09  danielk1977Change savepoint4.test to limit database growth. Otherw...
2009-06-09  drhModify mkkeywordhash.c so that it puts the original...
2009-06-09  drhEnable cell overflow checking in sqlite3BtreeInitPage...
2009-06-09  danielk1977Avoid calling fillInCell() to create an internal node...
2009-06-09  drhOnly do the cell overread checks in sqlite3BtreeInitPage if
2009-06-09  danielk1977Do not clear the MemPage.nFree variable when insertCell...
2009-06-08  drhAdditional comments to clarify the operation of the...
2009-06-08  drhClarification of the operation of the OR-term optimizer...
2009-06-08  danielk1977Change the btree balance code so that it does not call...
2009-06-08  drhIncrease the version number to 3.6.15 in preparation...
2009-06-07  drhDisable the LIKE optimization if the affinity of the...
2009-06-06  drhUpdate the error message on one of the corruption tests...
2009-06-06  danielk1977Fix an error in the malloc.test test script causing...
2009-06-06  drhMake sure the result of sqlite3VdbeGetOp() is not used...
2009-06-06  danielk1977When building in debug mode with gcc, force the nullMem...
2009-06-05  drhDetect when database corruption causes an attemp to...
2009-06-05  drhRemove leftover "breakpoint" commands from test scripts...
2009-06-05  drhDo not cast an unsigned int into an int for comparison...
2009-06-05  drhTake care that a corrupt variable-length integer does...
2009-06-04  drhEarlier detection of freelist corruption in the page...
2009-06-04  drhFix an assertion fault in balance_quick() that occurs...
2009-06-04  drhIf the root page of a btree is empty and is also not...
2009-06-04  danielk1977Reduce the stack usage of balance_quick(). (CVS 6715)
2009-06-04  shaneMinor updates to comments in test scripts. (CVS 6714)
2009-06-04  shaneMinor tweak to test script to ensure every byte in...
2009-06-04  drhFix two instances where a malformed header in a databas...
2009-06-03  drhChange the pcache1.c implementation so that the "header...
2009-06-03  danielk1977Add corruptD.test, a container for testing the "cell...
2009-06-03  danielk1977Define a set of constants to use as the "index" argumen...
2009-06-03  drhAdditional changes to reduce stack usage. The SQLITE_S...
2009-06-02  drhFurther reductions in the amount of stack space require...
2009-06-02  drhTweaks to vdbe.c to further reduce stack space requirem...
2009-06-02  drhAdd a test case for ticket #3893 and ticket #3894....
2009-06-02  drhAdd the vdbe-compress.tcl script which automatically...
2009-06-01  drhAvoid allocating large objects on the stack in the...
2009-06-01  drhMalloc for space to hold the Parse object in sqlite3_pr...
2009-06-01  shaneAdded assert to verify winMutex system is inited before...
2009-06-01  shaneEnsure that "static" mutexes are deleted on shutdown...
2009-06-01  shaneFix compiler warnings with MSVC build. (CVS 6699)
2009-06-01  shaneFix a couple of Windows only issues with test scripts...
2009-05-31  drhCode simplifications to facilitate coverage testing...
2009-05-31  drhFix the ".genfkey" command of the CLI so that it does...
2009-05-30  drhFix typo reported by ticket #3888. Other minor edits...
2009-05-30  drhSimplifications to the expr.c source module resulting...
2009-05-30  drhFix for ticket #3887. Other unrelated bits of code...
2009-05-30  danielk1977In vacuum.c use "PagerIsMemdb(X)" instead of "PagerFile...
2009-05-29  drhEnhance the sqlite3VdbeGetOp() routine so that it alway...
2009-05-29  drhRefinements in expression handling logic that have...
2009-05-29  drhStill more refinements to the hasHotJournal() fix of...
2009-05-29  drhThe hasHotJournal() fix of check-in (6687) causes some...
2009-05-29  drhModify the hasHotJournal() routine to return a false...
2009-05-28  drhRemove references to deleted function sqlite3ExprRegist...
2009-05-28  drhFix a NULL pointer dereference following an OOM error...
2009-05-28  drhMake sure the column name resolver does not try to...
2009-05-28  danielk1977Workaround the need for internal API sqlite3BtreeCursor...
2009-05-28  drhAdditional refinements to Expr handling. Restore compr...
2009-05-27  drhSimplifications to the Expr object: Remove Expr.span...
2009-05-25  drhFix the rtree test module so that it works even if...
2009-05-25  drhWhen pinning a temp register after it is reused by...
2009-05-25  danielk1977Add a test case for ticket #3879. (CVS 6675)
2009-05-24  drhAdditional clarification of the 3rd parameter to sqlite...
2009-05-24  drhIn the previous, the upper bound on the number of funct...
2009-05-24  drhCorrect and clarify the documentation on the third...
2009-05-22  danielk1977Do not transform a WHERE clause of the form "a = ?...
2009-05-22  drhAdd an assert() to pcache1.c to double-check that page...
2009-05-22  drhAdditional changes to pcache1 to prevent the page buffe...
2009-05-22  drhMake sure sqlite3_shutdown() completely disables the...
2009-05-22  drhAdd omitted word in the documentation for total_change_...
2009-05-22  drhFix an 8-byte alignment problem on HP/UX. Ticket ...
2009-05-21  drhSimplifications to expr.c in support of full coverage...
2009-05-21  drhIn the CLI in the ".dump" command, do not attempt to...
next