]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2010-05-03  danIf the sqlite3_wal_checkpoint() API is passed a NULL... wal
2010-05-03  drhMake sure the mutex is held while calling sqlite3ApiExi...
2010-05-03  danHave sqlite3_wal_checkpoint() populate the database...
2010-05-03  danAdd the "PRAGMA wal_autocheckpoint" command. Rename...
2010-05-03  danMerge two wal leaves.
2010-05-03  danAdd the sqlite3_wal_checkpoint() and sqlite3_wal_autoch...
2010-05-01  drhChange the SHM interface so that it does not take the...
2010-05-01  drhRemove the xShmPush and xShmPull methods from the VFS.
2010-05-01  drhDefine an invariant to guarantee deadlock-free operatio...
2010-05-01  drhRework mutexes on the SHM implemention for os_unix...
2010-05-01  danSupport compile-time option SQLITE_OMIT_WAL, for buildi...
2010-05-01  drhFix a typo in the walmode.test test script introducted...
2010-05-01  drhFix the sqlite3_mutex_alloc() interface to return NULL...
2010-05-01  danAdd test case demonstrating deadlock during recovery...
2010-05-01  drhDo not allow journal_mode=WAL if the underlying VFS...
2010-04-30  drhMerge in changes from the trunk.
2010-04-30  drhAvoid assertion faults in queries using indices with...
2010-04-30  drhChange the SHM VFS logic in os_unix.c so that it does...
2010-04-30  drhRemove some obsolete debugging parameters.
2010-04-30  danFix a problem with resizing the wal-index mapping after...
2010-04-30  danFix a problem with calculating the required size of...
2010-04-30  drhIn the debugging output for SHM-LOCK in os_unix.c,...
2010-04-30  danFix a problem in the previous commit. Both unixShm...
2010-04-30  danFix a bug whereby upgrading from a READ_FULL to a WRITE...
2010-04-30  danReapply commits [837d82a929] and [c05e7dca17] that...
2010-04-30  danAdd xShmXXX() methods to the test VFS in test_devsym...
2010-04-30  drhCorrectly record the fact that the SHM lock reached...
2010-04-30  drhFix a couple uninitialized variables in the xShmLock...
2010-04-30  danWhen closing a WAL connection, attempt an exclusive...
2010-04-30  danIf a reader attempts to upgrade to a writer, but is...
2010-04-30  drhSeparate the concepts of underlying storage size and...
2010-04-30  danAdd a missing walIndexUnmap() call to the checkpoint...
2010-04-30  danFix an assert() in sqlite3WalRead().
2010-04-30  danAdd missing mutexes to unixShmClose().
2010-04-30  danFix a couple of assert() statements in os_unix.c and...
2010-04-30  danAdd a missing walIndexUnmap() to sqlite3WalSnapshotOpen().
2010-04-30  danMerge latest bugfix into wal branch.
2010-04-30  drhThe first 6 WAL tests now work. It's a start.
2010-04-29  danZero the "immediate FK constraint counter" associated...
2010-04-29  drhRefactor wal.c to use the VFS. This check-in compiles...
2010-04-29  drhUntested implementation of the shared-memory dead-man...
2010-04-29  drhProgress towards a VFS that will support WAL. Locking...
2010-04-29  danClose all open database connections at the end of wal...
2010-04-29  danFix a but in the WAL checkpoint code causing SQLite...
2010-04-29  danAdd tests to walthread.test.
2010-04-28  danAdd a test to walthread.test for changing between WAL...
2010-04-28  danMerge two "wal"
2010-04-28  danChange walthread.test so that tests can be run with...
2010-04-28  drhChanges to the interface design for the xShmLock method...
2010-04-28  drhRename the sqlite3_log_hook() to sqlite3_wal_hook(...
2010-04-27  danMerge two "wal" leaves.
2010-04-27  danAdd a test to check that a checkpointer releases its...
2010-04-27  danFix a problem with identifying a corrupt database in...
2010-04-27  drhAdd the xShmRelease() method to the VFS. The os_unix...
2010-04-27  danRun trans.test and avtrans.test as part of the "wal...
2010-04-27  danFix a problem that occurs when one process causes the...
2010-04-27  drhMerge in recent changes from the trunk
2010-04-26  drhOptimization: Convert an ORDER BY clause into a no...
2010-04-26  danDo not attempt to set journal_mode=wal on :memory:...
2010-04-26  drhChange the default_cache_size pragma to always store...
2010-04-26  drhIdentify the SQLite version meta-value entry in the...
2010-04-26  danFixes for problems with small caches and SAVEPOINT...
2010-04-26  drhFurther enhancements to the showdb utility: A page...
2010-04-26  drhEnhancements to the showdb.c utility program. Automati...
2010-04-26  danAdd the "wal" permutation to run existing test files...
2010-04-26  danAdd mutexes to fix a race condition in wal.c. This...
2010-04-26  drhChange the names of the log.c and log.h source files...
2010-04-26  drhBegin moving WAL-specific I/O into the VFS. This check...
2010-04-25  drhRemove an unreachable branch from the function initiali...
2010-04-24  danAdd comment explaining checksum mechanism.
2010-04-24  danFix bugs in WAL mode rollback.
2010-04-24  danMerge with [0291ed974d].
2010-04-24  drhWhen commands such as ALTER TABLE and VACUUM use SQL...
2010-04-24  danMerge with [e79dac3c2f].
2010-04-24  danReserve some space at the start of the log-summary...
2010-04-23  danFixes and tests for backup of a WAL database.
2010-04-23  shanehMerge of notify.c changes from experimental.
2010-04-23  danAdd very simple test cases for backup and VACUUM of...
2010-04-22  danCreate a version of the log checksummer that works...
2010-04-22  danFurther tests and changes related to switching between...
2010-04-21  danTests for (and changes to) the code to switch between...
2010-04-21  danIf, after obtaining a SHARED lock, there exists a ...
2010-04-21  danMinor changes to test cases to account for the fact...
2010-04-20  danUse the read and write version fields of the database...
2010-04-19  danAdd the sqlite3_log_hook() interface for scheduling...
2010-04-17  danAdd some comments regarding file-locks to log.c.
2010-04-17  danDo not sync any files in wal mode if "PRAGMA synchronou...
2010-04-17  drhIt is possible for sqlite3.pUnlockConnection to be...
2010-04-17  danMerge with trunk commit [3e646e3f4c].
2010-04-17  danIn synchronous=normal mode, do not sync the log after...
2010-04-17  drhChange sqlite3_step() so that it automatically calls...
2010-04-17  danEnhancements to wal-mode locking scheme.
2010-04-16  shanehChanges for branch coverage of notify.c. Fixed quirk of
2010-04-16  danChange the log file format to include a small (12 byte...
2010-04-16  danFix bug in log recovery (last frame in log was being...
2010-04-15  drhDisable query flattening when the outer query is a...
2010-04-15  danAllow writers to write dirty pages to the log mid-trans...
2010-04-15  danMerge two leaves on the WAL branch.
2010-04-15  drhThe query planner fix of check-in [33b1f584ef] should...
2010-04-15  drhFix a problem in the result set size estimation logic...
next