]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
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-29  mistachkinFor the clean target, tidy up a couple more generated...
2013-03-29  drhVersion 3.7.16.1 version-3.7.16.1
2013-03-28  drhAdjustment to an extreme corner case in the sqlite3Atoi...
2013-03-28  drhMerge the changes for the 3.7.16.1 release candidate...
2013-03-27  drhFix harmless compiler warnings coming from MSVC64 in...
2013-03-27  drhIncrement the version number to 3.7.16.1.
2013-03-27  drhIn order to optimize out the ORDER BY clause,
2013-03-27  drhRestore additional ORDER BY optimizations that where... orderby-fix
2013-03-27  drhImproved optimization of ORDER BY.
2013-03-27  drhA fix an test-case for the ORDER BY problem identified...
2013-03-27  drhCandidate fix for ticket [6bfb98dfc0c]: Make sure inval...
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  drhAlso export the sqlite3changeset interfaces in the...
2013-03-19  drhBring makefiles and build scripts into alignment with...
2013-03-19  drhInclude the sqlite3session.h header file in with sqlite...
2013-03-18  drhClarifications to the documentation for the sqlite3_agg...
2013-03-18  drhAdjust the MSVC makefile so that it correctly handles...
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  mistachkinMerge updates from trunk.
2013-03-13  mistachkinFix typos in MSVC makefile.
2013-03-13  drhFix main.mk so that it builds the amalgamation correctly.
2013-03-13  drhFix a compiler warning in sqlite3VdbePreUpdateHook().
2013-03-13  danEnhance tests for ticket [4dd95f6943].
2013-03-13  mistachkinRename the experimental todouble() function to toreal...
2013-03-13  danMerge latest trunk changes into this branch.
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-12  danMerge recent changes to trunk into sessions branch.
2013-03-12  mistachkinIncrease strictness of the new experimental functions...
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-11  mistachkinAdd more tests.
2013-03-11  mistachkinAdd experimental tointeger() and todouble() SQL functions.
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...
next