]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2010-06-30  danDo not call pager_open_journal() from within PagerBegin...
2010-06-30  danAdd coverage test cases. Have sqlite3_backup_step(...
2010-06-29  danAdd tests to pager1.test and pagerfault.test.
2010-06-28  danAdd extra pager tests.
2010-06-28  danFix some errors when compiling with SQLITE_OMIT_WAL.
2010-06-28  danRemove debugging code from test script.
2010-06-28  danCurrently, if SQLite cannot find a table or index refer...
2010-06-26  drhMake walIndexTryHdr() a private function. Fix an issue...
2010-06-26  drhSuppress various compiler warnings.
2010-06-26  drhFix two asserts on the scratch allocator to allow for...
2010-06-26  drhSuppress a couple uninitialized variable warnings.
2010-06-26  danAdd test file tkt-d11f09d36e.test.
2010-06-26  drhRemove a NEVER() in pager that can in fact be reached...
2010-06-26  danFix a case where the doNotSyncSpill flag may remain...
2010-06-26  danWhen synchronous=NORMAL, use the same journal file...
2010-06-25  danFurther test cases for pager1.test and pagerfault.test.
2010-06-25  danReduce the average (but not maximum) size of the alloca...
2010-06-25  danReduce the size of the large allocation (approx 8KB...
2010-06-25  drhFix up a branch in sqlite3ValueFromExpr() so that we...
2010-06-25  drhChange the name of the shared-memory file on windows...
2010-06-25  danModify the merge-sort in wal.c so that it does not...
2010-06-24  danAdd test cases to pager1.test and pagerfault.test.
2010-06-24  drhRevert to allowing a cache spill during writes of multi...
2010-06-24  danModify ctime.test to work with SQLITE_THREADSAFE=2.
2010-06-24  drhDisable memory-pressure induced cache spill during...
2010-06-24  danAdd a coverage test to pagerfault.test.
2010-06-24  danAdd coverage tests. Remove a NEVER macro from pager...
2010-06-24  drhMake sure the wal-index reader detects an incorrect...
2010-06-23  drhFix and/or improve comments in wal.c. No code changes.
2010-06-23  danAdd test case for SQLITE_FULL errors to pagerfault...
2010-06-23  drhInclude the SOURCE_ID value in the log messages output...
2010-06-23  drhAdjust the shared-memory locking range to account for...
2010-06-23  danAdd a version number to the wal-index header. If SQLite...
2010-06-23  drhFix the xCurrentTimeInt64 interface on windows. It...
2010-06-23  drhSimplifications to the pager_delmaster() implementation.
2010-06-22  drhDisable code used only by the codec when the codec...
2010-06-22  danAdd codec support to wal mode.
2010-06-22  drhWhen trying to transition from journal_mode MEMORY...
2010-06-22  danSome changes to test scripts related to codec enabled...
2010-06-22  dani
2010-06-21  drhMinor tweaks to get the pager working for corner cases...
2010-06-21  drhFix comment inside the pager_unlock() routine. Always...
2010-06-21  danAdd test cases to pager1.test and pager2.test.
2010-06-21  drhMerge the experimental UNDELETABLE_WHEN_OPEN optimizati...
2010-06-21  danChange things so that journal2.test works with ENABLE_A...
2010-06-21  danAdd further pager tests.
2010-06-21  danMerge latest trunk change.
2010-06-21  danFix jrnlmode2.test so that it works on systems where...
2010-06-19  drhFix an uninitialized variable in os_unix.c.
2010-06-19  danFix an assert() failure that could occur if compiling...
2010-06-19  danChange the name of IOCAP_SAFE_DELETE to IOCAP_UNDELETAB...
2010-06-19  danAdd tests to pager1.test and pagerfault.test.
2010-06-19  drhChange the unix VFS to always allocate shared-memory...
2010-06-19  danAdd tests to pager1.test and pagerfault.test.
2010-06-18  danAdd tests to pager1.test.
2010-06-18  danRearrange some code in OP_JournalMode to avoid incorrec...
2010-06-18  danChange the implementation of the unix implementation...
2010-06-17  danApply [b9b11855e8] (the alternate fix to [fc62af4523...
2010-06-17  danMerge trunk change [7c3a86b9c7].
2010-06-17  danA different fix to [fc62af4523]. When changing from...
2010-06-17  drhFix the tkt-fc62af4523.test to work around non-randomne...
2010-06-17  danFix bug in journal2.test.
2010-06-17  danMerge trunk updates with experimental branch.
2010-06-17  danDo not delete the journal file in "PRAGMA journal_mode...
2010-06-17  danAdd test case for [fc62af4523].
2010-06-17  danMerge fix [f80c3f922a] with experimental changes.
2010-06-17  drhBug fix: Only trust the database size number at offset...
2010-06-16  danExperimental change: On systems where it is not possibl...
2010-06-16  danAdd extra test cases to pager1.test.
2010-06-16  danFix a memory leak that can occur in os_unix.c if an...
2010-06-15  danRationalize a common pattern in tcl test cases into...
2010-06-15  danFix a problem introduced into lock2.test by the previou...
2010-06-15  danAdd test file pager1.test, containing tests of inter...
2010-06-15  danRun extra iterations in wal3.test to ensure test coverage.
2010-06-15  danMerge in [2c5e48a485].
2010-06-15  drhMinor tweaks to the interface documentation - adding...
2010-06-15  drhUpdates to comments and testcase() macros in wal.c.
2010-06-15  danChanges to the way tcl test scripts work. No changes...
2010-06-14  drhFix an error in the walfault.test script introduced...
2010-06-14  drhMove the xShmMap method to in between xShmLock and...
2010-06-14  drhMerge the experimental shared-memory mmap-by-chunk...
2010-06-14  danAdd the new xShmMap (formerly xShmPage) to os_win.c.
2010-06-14  danRemove xShmGet/Size/Release from the sqlite3_vfs struct...
2010-06-14  danUpdate some comments in wal.c. No code changes.
2010-06-14  danChange the interface to internal function walGetHash...
2010-06-14  danAdd the xShmPage method to the "crash" vfs in test6.c.
2010-06-14  danAdd some fault-injection tests to improve coverage.
2010-06-12  danFix some problems with handling IO errors on the experi...
2010-06-11  danExperimental change to the xShmXXX parts of the VFS...
2010-06-11  drhRefactor and simplify the logic used to change journalmode.
2010-06-10  drhAdding original art for the new SQLite logo.
2010-06-10  drhAdd the SQLITE_TESTCTRL_PGHDRSZ verb for sqlite3_test_c...
2010-06-10  drhUpdate the test VFS in test_journal.c so that it implem...
2010-06-10  danStore the MemPage structure in memory following, instea...
2010-06-10  drhRemove a condition that must always be true. Replace...
2010-06-09  danFix test script problems causing errors in the "inmemor...
2010-06-09  danWhen restarting (wrapping) a log file, set all unused...
2010-06-09  danFix for ticket [f973c7ac31].
2010-06-09  drhShift the meaning of aReadMark[] back so that +1 offset...
2010-06-09  danSimpler fix for the race condition also fixed by [7c102...
next