]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2009-04-02  danielk1977Ensure the required VerifyCookie/Transaction/TableLock...
2009-04-02  drhFix a couple of harmless nuisance warnings. (CVS 6438)
2009-04-02  drhDisable the query flattening optimization when the...
2009-04-02  drhChange the way that the random() SQL function prevents...
2009-04-02  drhUse ALWAYS and NEVER macros on unchangeable conditions...
2009-04-02  drhIn the built-in SQL function implementations, improve...
2009-04-02  drhEnforce the run-time sqlite3_limit() length limit on...
2009-04-01  drhIncrease test coverage of bitvec.c slightly. Fix the...
2009-04-01  drhMark untestable branches of memjournal.c as such. ...
2009-04-01  drhFix the strftime() function so that the %s format can...
2009-04-01  drhChange an unreachable error condition test to an assert...
2009-04-01  danielk1977Remove an unreachable branch from lockBtree(). Add...
2009-04-01  drhFix a bug in the sqlite3Utf16ByteLen() function so...
2009-04-01  danielk1977Test that two database connections that use different...
2009-04-01  danielk1977Remove the unused SQLITE_Vtab flag. (CVS 6425)
2009-04-01  danielk1977In pageReinit() in btree.c, only reinitialize a page...
2009-04-01  drhRemove dead code from the UTF conversion routines....
2009-04-01  danielk1977Remove an unreachable branch from allocateSpace() in...
2009-04-01  danielk1977Add some assert() statements to querySharedCacheTableLo...
2009-04-01  vapieradd a sanity check to make sure the configure script...
2009-03-31  vapierupdate configure script so it has proper VERSION in...
2009-03-31  drhVersion 3.6.12 (CVS 6418)
2009-03-31  shaneFix compiler warnings from gcc and MSVC; Correct typo...
2009-03-31  drhMake sure a ROLLBACK that follows an incremental vacuum...
2009-03-31  drhRemove two unused lines from pcache.c. (CVS 6415)
2009-03-31  drhAdded a test case for ticket #3672. (CVS 6414)
2009-03-30  danielk1977Fix a case where a pointer map page was not being journ...
2009-03-30  drhAdd a comment to the pageReinit() routine explaining...
2009-03-30  danielk1977Modify integrity-check to prevent a buffer overread...
2009-03-30  drhMake sure recursive calls to winOpen() preserve the...
2009-03-30  drhAvoid calls to newer TCL interfaces in the test logic...
2009-03-30  drhAvoid all use of the "LL" suffix for long-long integer...
2009-03-30  drhDisplay a warning that the notify2-3 test sometimes...
2009-03-30  danielk1977Another change related to (6401) and (6402): When an...
2009-03-29  drhAdd a comment to the doubleToInt64() routine that expla...
2009-03-29  drhTurn off the debugging macros in where.c - left on...
2009-03-29  drhImprovements to cost estimation for evaluating the...
2009-03-28  drhPrevious commit ((6401)) did not quite fix the problem...
2009-03-28  drhIn the unix-backend, when simulating an I/O error on...
2009-03-28  drhThe test_async.c module must pass an unchanging filenam...
2009-03-28  danielk1977Fix thread related problems in test modules test_async...
2009-03-28  drhBack out check-in (6380). Replace it with a proper...
2009-03-28  danielk1977The fix in (6395) was not correct. Fix #3756 a differen...
2009-03-28  danielk1977Fix a couple of test script bugs. No changes to SQLite...
2009-03-28  danielk1977Fix readDbPage() so that if an SQLITE_IOERR_SHORT_READ...
2009-03-27  danielk1977When "PRAGMA case_sensitive_like" is invoked, override...
2009-03-27  drhFix another compiler warning in the test logic of tclsq...
2009-03-27  drhFix some compiler warnings in test code. (CVS 6392)
2009-03-27  danielk1977Fix an incompatibility between the test_async.c backend...
2009-03-26  danielk1977Check that the first byte of a potentially hot journal...
2009-03-26  danielk1977Prevent the tcl test suite from throwing an exception...
2009-03-26  drhAdded new tests of the scratch memory allocator for...
2009-03-26  danielk1977Ensure that the test vfs in test_journal.c zeroes sqlit...
2009-03-25  drhRemove an unused parameter from sqlite3DequoteExpr...
2009-03-25  danielk1977Fix a problem preventing sqlite3_extended_errcode(...
2009-03-25  drhWhen a VFS.xOpen fails, make sure the pMethods pointer...
2009-03-25  drhUse fdatasync() only on linux, unless -Dfdatasync=fdata...
2009-03-24  drhChange OS_UNIX to SQLITE_OS_UNIX in test_thread.c....
2009-03-24  drhGet the OOM tester in async2.test working again. (CVS...
2009-03-24  drhAdjust the lock.test and lock3.test scripts so that...
2009-03-24  drhInclude sqliteInt.h in test_async.c so that the asynchr...
2009-03-24  drhNew assert()s added to verify that the Expr.token value...
2009-03-24  drhChanges to insure that lookaside memory allocations...
2009-03-24  danielk1977Add a comment to prepare.c explaining why the lookaside...
2009-03-23  drhClarify the meaning of a comment. No changes to code...
2009-03-23  drhAdd asserts to make sure that database connection locks...
2009-03-23  danielk1977Fix an obscure race condition that can occur when multi...
2009-03-23  danielk1977Use the ROUND8() macro to round an integer up to the...
2009-03-23  shaneFix compiler warning in MSVC. (CVS 6371)
2009-03-22  drhAllow the keyword INDEXED to be used as the name of...
2009-03-21  drhUpdate comments in build.c to conform to the latest...
2009-03-21  drhRig the unix backend to use fdatasync() by default...
2009-03-21  drhOn unix, always use fdatasync() instead of fsync()...
2009-03-20  danielk1977Add a test to try to hit the race-condition fixed by...
2009-03-20  danielk1977Fix an assert failure introduced by (6355). (CVS 6365)
2009-03-20  danielk1977Make sure struct WhereClause is aligned on an 8-byte...
2009-03-20  drhRename the unused MEM2 static mutex to OPEN and reuse...
2009-03-20  danielk1977Fix a problem in thread005.test cause errors on osx...
2009-03-20  danielk1977Fix a problem in loadext.test causing an error on OSX...
2009-03-19  danielk1977Fix a couple of fairly obscure cases where an assert...
2009-03-19  danielk1977Change sqlite3_step() to return SQLITE_LOCKED if a...
2009-03-18  danielk1977Fix a crash that could occur when creating an index...
2009-03-18  danielk1977Modify test script backup2.test so that it works on...
2009-03-18  drhAdd comments and testcase() macros to the fix for share...
2009-03-18  danielk1977Fix some cases where executing SQL from within a user...
2009-03-17  drhMove the rowid cache out of VdbeCursor and into BtCurso...
2009-03-17  danielk1977Fix a problem that could cause a crash when a shared...
2009-03-17  drhFix test script bugs in the thread002.test and thread_c...
2009-03-16  drhMake sure the finished() array in thread005.test is...
2009-03-16  danielk1977Modify quick.test to support the QUICKTEST_INCLUDE...
2009-03-16  drhAdditional hyperlinks in the sqlite3_unlock_notify...
2009-03-16  danielk1977Add the sqlite3_unlock_notify() API. (CVS 6348)
2009-03-16  drhBump the version number to 3.6.12. (CVS 6347)
2009-03-16  drhRemove surplus white space from shell.c. Use strlen30...
2009-03-14  danielk1977Fix for #3719. When synthesizing a CREATE TABLE stateme...
2009-03-13  danielk1977Do not overrun a buffer in the genfkey code (now part...
2009-03-12  danielk1977Avoid fts3 crash on (MATCH '""') expressions. Ticket...
2009-03-12  danielk1977Make calls to sqlite3BtreeRollbackStmt() no-ops when...
2009-03-05  danielk1977Begin purging dirty pages from the cache once 90% of...
2009-03-05  danielk1977Comment out a recently added assert statement that...
next