]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2013-04-02  mistachkinAdd assert to the Windows VFS pertaining to the size...
2013-04-02  danAdd test cases to mmap1.test and pagerfault.test.
2013-04-02  danChange an assert in pager.c to acknowledge that it...
2013-04-02  drhFix the build for Mac.
2013-04-02  danAdd new test file btreefault.test.
2013-04-02  drhFix a faulty assert() in the os_win.c VFS.
2013-04-02  danAdd test cases for errors in mmap() or mremap() is...
2013-04-02  drhProposed template preprocessor magic for activating...
2013-04-02  drhReorder two conditions to make coverage testing easier.
2013-04-02  drhRemove an unreachable condition from pager.c.
2013-04-02  drhAlways send the SQLITE_FCNTL_MMAP_LIMIT pragma to the...
2013-04-01  drhRemove a debugging printf() accidently left in the...
2013-04-01  drhAdd the SQLITE_CONFIG_MMAP_LIMIT configuration option...
2013-04-01  drhAdd a comment to xUnfetch on windows to say that the...
2013-04-01  drhIn windows, round down the size of the memory mapped...
2013-04-01  danMerge accidental fork.
2013-04-01  danAttempt to emulate mremap() on non-Linux systems by...
2013-04-01  drhBug fix in the winMapfile() subroutine: Be sure to...
2013-04-01  drhAdd xFetch and xUnfetch methods to the os_win.c VFS.
2013-04-01  danEnsure that a checkpoint does not use an out-of-date...
2013-04-01  danFix a typo in a log message in wal.c.
2013-04-01  danFix a problem in btree.c that could cause a crash follo...
2013-03-26  drhFix a comment in os_unix.c. No code changes.
2013-03-26  drhChange the name of the Pager.pFree field to Pager.pMmap...
2013-03-26  danIn btree.c, save the positions of any open cursors...
2013-03-26  drhPrevious check-in accidently left mmap turned off by...
2013-03-25  drhMemory-mapped I/O is now on by default. The "PRAGMA...
2013-03-25  drhAdd munmap and mremap to the set of os interfaces that...
2013-03-25  danUse mremap() on Linux.
2013-03-25  drhMerge all recent trunk changes into the experimental...
2013-03-25  danAdd a test that simulates an error in mmap().
2013-03-25  danSimulate OOM errors in the sqlite3OsFetch() function...
2013-03-25  danChange the signature of the xUnfetch method to "int...
2013-03-25  danRemove unnecessary code to round the size of a memory...
2013-03-25  danDo not return SQLITE_IOERR when the user attempts to...
2013-03-25  danFix a case in the pager where an xFetch() reference...
2013-03-25  danAdd a second test for [38b1ae018f].
2013-03-25  danIn fts3, when filtering lists for hits in a specific...
2013-03-24  drhRemove the SQLITE_OMIT_MERGE_SORT compile-time option...
2013-03-23  danReplace the sqlite3_io_methods.xMremap interface with...
2013-03-23  danImprove a comment in wal.c. No code changes.
2013-03-23  danFix a case where a checkpoint operation could write...
2013-03-23  mistachkinIn the winMremap VFS function, unmap the region prior...
2013-03-23  mistachkinDo not unmap the mapped file region in winTruncate...
2013-03-23  mistachkinPreliminary changes to support the xMremap VFS method...
2013-03-22  danUpdate wal mode tests so that they work with the mmap...
2013-03-22  drhFix a potential NULL-pointer dereference in btreeSwapOu...
2013-03-22  danFix a case where the mapped part of a database file...
2013-03-22  danAllow the database file to be memory mapped in wal...
2013-03-22  danAdd a fix for the assert() statements added by the...
2013-03-22  danAdd assert statements to os_unix.c to ensure that any...
2013-03-21  mistachkinMany spelling fixes in comments. No changes to code.
2013-03-21  danFix cases where xRead() was being used to read from...
2013-03-21  danAvoid calling xRead() on a part of the database file...
2013-03-21  danFix a problem when opening a write-transaction while...
2013-03-21  danDo not use the Linux mremap() call. Use the same strate...
2013-03-20  danOptimize the xMremap method in os_unix.c some.
2013-03-20  danWhen possible, use memory mapping when appending new...
2013-03-20  drhFix text-to-numeric type casting so that it works corre...
2013-03-20  danAdd test file mmap1.test.
2013-03-19  danAdd the sqlite3_io_methods.xMremap() method to the...
2013-03-19  drhBring makefiles and build scripts into alignment with...
2013-03-18  drhClarifications to the documentation for the sqlite3_agg...
2013-03-18  drhVersion 3.7.16 version-3.7.16
2013-03-16  danWhen possible, use memcpy() to and from the mapped...
2013-03-15  danFix a dropped error code in pager.c.
2013-03-15  danAllow read-only cursors to use mmap pages even if there...
2013-03-14  danUse mmap() to read from the database file in rollback...
2013-03-13  danEnhance tests for ticket [4dd95f6943].
2013-03-13  drhFix the ORDER BY with IN constraint logic so that it...
2013-03-12  drhAdd a single new test case to the ORDER BY with IN... desc-orderby-fix-1
2013-03-12  mistachkinFix typo in sqlite3_close() function documentation...
2013-03-12  drhFix a test case that had an ambiguous result.
2013-03-12  mistachkinFix typo in sqlite3_close() function documentation... docTypo
2013-03-12  drhFix the ORDER BY optimization with IN constraints when...
2013-03-12  drhRevise the patch to make it easier to understand.
2013-03-12  danAdd test cases for [4dd95f6943].
2013-03-12  drhRevised fix for the DESC ORDER BY and IN constraint...
2013-03-12  drhA proposed fix for the DESC ORDER BY bug of ticket...
2013-03-11  danDefine _BSD_SOURCE when building on OpenBSD. This is...
2013-03-11  danFixes for compiling with SQLITE_OMIT_AUTOVACUUM and...
2013-03-11  danFixes for compiling with SQLITE_OMIT_AUTOVACUUM and... omit-fixes
2013-03-09  danAdd a test case for the problem fixed by the previous...
2013-03-09  danFix a problem with resolving "db.view.column" reference...
2013-03-08  danIf SQLITE_OMIT_UTF16 is defined, avoid setting the...
2013-03-08  danIf SQLITE_OMIT_UTF16 is defined, avoid setting the...
2013-03-07  drhFix the char() function so that it works even if SQLITE...
2013-03-07  mistachkinSkip tests that require UTF-16 support when compiled...
2013-03-07  mistachkinFix two compilation issues, one warning and one error...
2013-03-06  danFix a problem in incrvacuum_ioerr.test. Do not run...
2013-03-06  drhFix a bug (ticket [fc7bd6358f59]) that caused incorrect...
2013-03-06  drhAdd the SQLITE_READONLY_ROLLBACK extended error code.
2013-03-06  drhFix an operator precedence problem on the [1d8086902e... ex-robust-open
2013-03-05  danMerge experimental branch with trunk.
2013-03-05  danDo not attempt to set the permissions on an existing...
2013-03-05  danAdd extended error code SQLITE_READONLY_ROLLBACK. Retur...
2013-03-05  danFix a bug in the recent incremental-vacuum related...
2013-03-05  drhSimplified error message on the showdb utility.
2013-03-04  danOmit a test that uses the progress handler callback...
2013-03-04  danRemove an assert() statement that has been incorrect...
next