]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2021-07-12  danFix a defect in the query-flattener optimization identi... branch-3.32a
2020-06-08  drhWhen an Expr object is changed and that Expr is referen...
2020-06-04  drhVersion 3.32.2 version-3.32.2
2020-06-03  drhFix for ticket [810dc8038872e212].
2020-06-03  drhVersion number to 3.32.2
2020-05-25  drhVersion 3.32.1 version-3.32.1
2020-05-25  drhExtra assert() statements in the printf() logic.
2020-05-25  drhDefensive code that tries to prevent a recurrence of...
2020-05-25  drhFix minor compile issues with optional extensions.
2020-05-25  drhMake sure variable declarations are at start of scope...
2020-05-24  drhVersion number to 3.32.1.
2020-05-24  drhWhen rewriting a query for window functions, if the...
2020-05-24  drhMove some utility Walker callbacks into the walker...
2020-05-24  drhImprovements to parse-tree tracing logic. No changes...
2020-05-24  drhMinor fix to a comment. No code changes.
2020-05-23  drhLimit the "precision" of floating-point to text convers...
2020-05-23  drhImproved bytecode comment.
2020-05-22  drhVersion 3.32.0 version-3.32.0
2020-05-21  drhChange a NEVER macro into a NO_TEST comment, as the...
2020-05-21  danAvoid another potential OOB read in sqlite3expert.c.
2020-05-20  drhBack out the change from [7fab1393c2b22b1f] that tries...
2020-05-19  drhAdd compiler hints to disable TSAN for the routines...
2020-05-19  danIn os_win.c, avoid calling sqlite3_uri_boolean() on...
2020-05-19  drhUser-suggested improvement to the README.txt for the...
2020-05-19  drhIn wal.c, improved comments on concurrency issues....
2020-05-18  danAdd vdbevtab.lo to build of libsqlite3.lib in Makefile...
2020-05-17  drhAvoid harmless UB in memcpy() in the JSON extension.
2020-05-17  drhUse the sqlite3Realloc() interface internally, rather...
2020-05-16  drhPerformance optimization for the sqlite3FindTable(...
2020-05-16  drhThe OP_RealAffinity opcode is not necessary after readi...
2020-05-16  danFix a use-after-free bug in the fts3 snippet() function.
2020-05-16  drhExtra memory barrier during initialization.
2020-05-16  danAdd sqlite3BeginBenignMalloc() and EndBenignMalloc...
2020-05-15  danUpdate code in sqlite3expert.c to account for the fact...
2020-05-15  danFix another build problem for SQLITE_OMIT_VIRTUALTABLE...
2020-05-15  drhFix a documentation typo. No changes to code.
2020-05-15  drhAdjust some requirement marks. No changes to code.
2020-05-15  danUpdate test file e_fkey.test to account for the fact...
2020-05-15  danFix SQLITE_OMIT_VIRTUALTABLE testfixture builds.
2020-05-15  danTest script changes to account for the fact that the...
2020-05-15  mistachkinEnhancements to long-path support in the Win32 VFS.
2020-05-15  drhMove some new test cases from fts3snippet.test into...
2020-05-15  drhAdd the SQLITE_ENABLE_FTS3_PARENTHESIS option to fuzzch...
2020-05-14  drhFix a null pointer deference that can occur on a strang...
2020-05-14  drhDo not allow a virtual table to be renamed into the...
2020-05-13  drhImplement the IIF(x,y,z) SQL function that is short...
2020-05-13  drhRemove unused constant SQLITE_FUNC_COALESCE.
2020-05-13  danUse AtomicStore() and AtomicLoad() in a few more places...
2020-05-11  drhNew test case in test/fuzzdata8.db.
2020-05-11  danFix a problem handling constant integer expressions...
2020-05-08  drhRelease some restrictions on columns added by ALTER...
2020-05-08  drhFix the count-optimization so that it honors the NOT...
2020-05-08  drhNew test cases added to test/fuzzdata8.db.
2020-05-08  drhDo not retry on a failed realloc() unless SQLITE_ENABLE...
2020-05-07  danFix a failing assert() in fts3 triggered by a corrupt...
2020-05-07  danChanges to avoid deadlock in SQLITE_ENABLE_SETLK_TIMEOU...
2020-05-07  danFix an error that could occur if the first transaction... setlk-deadlock-changes
2020-05-07  danMerge trunk changes into this branch.
2020-05-07  drhFix the handling of reserve-bytes so that the maximum...
2020-05-06  danAvoid leaking a file-handle in test file walsetlk.test.
2020-05-06  danFix an assert() failure that could follow an IO error.
2020-05-06  drhFix harmless compiler warnings.
2020-05-06  danFix a problem preventing building without SQLITE_ENABLE...
2020-05-06  danAdd error code SQLITE_BUSY_TIMEOUT, used internally...
2020-05-06  danFix compiler warnings in non-SQLITE_ENABLE_SETLK_TIMEOU...
2020-05-06  danBlock on the WRITER lock when attempting to run recovery.
2020-05-06  drhProvide the SQLITE_DEFAULT_LEGACY_ALTER_TABLE compile...
2020-05-06  danAdd tests for running recovery when opening a write...
2020-05-06  danMerge latest trunk changes into this branch.
2020-05-05  danUnless upgrading an existing read transaction, have...
2020-05-05  drhThe only known path to a corruption detection branch...
2020-05-05  drhEarlier detection of index corruption caused by missing...
2020-05-05  drhFix a compiler warning in cksumvfs.c.
2020-05-04  drhFix harmless compiler warnings.
2020-05-04  danChanges to avoid deadlock in SQLITE_ENABLE_SETLK_TIMEOU...
2020-05-04  drhMinor change to the sqlite_stmt virtual table, for...
2020-05-04  drhSimplify the initialization of built-in extensions.
2020-05-04  drhEnsure that the master-journal name is in a form suitab...
2020-05-02  drhAdd the SQLITE_FCNTL_CKPT_START file-control and use...
2020-05-02  drhAdd support for PRAGMA analyze_limit and approximate...
2020-05-02  drhAdd a missing VdbeCoverage() macro. approximate-analyze
2020-05-02  drhMerge the bytecode and tables_used table-valued functio...
2020-05-02  drhCorner-case changes to the bytecode virtual table for... bytecode-function
2020-05-01  drhMerge recent enhancements from trunk.
2020-05-01  drhAdd the SQLITE_FCNTL_CKPT_START file-control. Use... ckpt-start-fcntl
2020-05-01  drhMerge recent trunk enhancements.
2020-05-01  drhClarification to the sqlite3_uri() family of interfaces...
2020-05-01  drhUpdate documentation for sqlite3_close_v2() for clarity...
2020-05-01  drhAdd the new SQLITE_IOERR_DATA result code and use it...
2020-04-29  drhDo not allow page_size changes on an active cksumvfs...
2020-04-28  drhFix incorrect error message when something goes wrong...
2020-04-28  drhAdd the cksumvfs extension.
2020-04-28  drhUse AtomicStore() when setting the mem0.nearlyFull...
2020-04-28  drhUse an AtomicLoad() macro in sqlite3HeapNearlyFull().
2020-04-26  drhYet another attempt to enhance sqlite3_load_extension...
2020-04-26  drhFix an issue with check-in [bc3bf7c6681a96bc] when...
2020-04-25  drhFix the sqlite3_load_extension() interface so that...
2020-04-25  danEnsure affinity is not discarded from a view column...
2020-04-24  drhThe new sqlite3_database_file_object() interface requir...
2020-04-24  drhNew test case for ticket [1dcb4d44964846ad].
next