]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2009-04-06  drhAllow "default" to be a keyword used by PRAGMA statemen...
2009-04-06  drhMake sure the reverse_unordered_selects pragma works...
2009-04-06  drhCheck-in (6450) introduced the possibility of calling...
2009-04-05  drhFix a segfault in Lemon that occurs if the input gramma...
2009-04-05  drhAdditional code to make sure and to assert that memory...
2009-04-04  drhAllow the journal_size_limit to be larger than 21474836...
2009-04-04  drhAllow the journal_mode for in-memory databases to be...
2009-04-04  drhClarify the meanings of the SQLITE_SYNC_NORMAL and...
2009-04-03  drhRemove a blank line in sqlite.h.in that was preventing the
2009-04-03  drhUse integer rather than floating point compuations...
2009-04-03  drhFix the PRAGMA parser so that it can accept negative...
2009-04-02  drhMake sure count(*) works on the sqlite_master table...
2009-04-02  drhMake sure the VACUUM statement locks down the page_size...
2009-04-02  drhFix the sqlite3_prepare() family of interfaces so that...
2009-04-02  danielk1977Fix a problem causing the BtShared.isPending flag to...
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...
next