]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2019-11-22  drhExtend the json-path mechanism with array indexes of... json-path-enhancement
2019-11-22  drhFix a harmless compiler warning.
2019-11-22  drhFix an indentation error and improve the placement...
2019-11-22  drhAdd more test cases from Yongheng Chen and Rui Zhong.
2019-11-22  danFix a crash that could occur if a sub-select that uses...
2019-11-22  drhRevise the SQLITE_OPEN_NOFOLLOW so that it actually...
2019-11-21  drhAdd all fuzz-test cases received from Yongheng Chen...
2019-11-21  drhFix an out-of-bounds array reference in the generated...
2019-11-21  drhWhenever a generated column is used, assume that all...
2019-11-21  drhFix a problem that comes up when using generated column...
2019-11-21  danFix a recently introduced memory leak in the test code...
2019-11-21  danPrevent direct and indirect recursive content= options...
2019-11-20  danFix a use-after-free problem in the test suite. No...
2019-11-20  danFurther improve detection of corrupt records in fts3.
2019-11-20  drhChanges to extensions and test logic so that the build...
2019-11-19  drhEnhancements to DBSTAT: (1) Make name=? queries effici...
2019-11-19  drhGet the aggregate=TRUE feature working on the DBSTAT... dbstat-enhancements
2019-11-19  drhBegin an enhancement effort for the built-in DBSTAT...
2019-11-19  mistachkinMake the result of sqlite3_normalized_sql() survive...
2019-11-18  mistachkinAdd support for the SQLITE_ACCESS_SYMLINK flag in the...
2019-11-18  mistachkinEnsure all file names passed to the VFS layer are doubl...
2019-11-18  drhIn the SQLITE_OPEN_NOFOLLOW processing, distinguish...
2019-11-18  drhAdd support for SQLITE_OPEN_NOFOLLOW.
2019-11-18  drhImprovements to detection of corruption in the %_stat...
2019-11-18  drhFurther improvements to shadow table corruption detecti...
2019-11-18  drhDetect and prevent infinite recursion in fts3SelectLeaf...
2019-11-18  drhImproved detection of corruption in the %_stat table...
2019-11-17  drhFix an assert that can fail if the schema is corrupt.
2019-11-17  drhBetter detection of corruption in the %_stat and %_docs...
2019-11-17  drhRemove a reachable NEVER() in FTS3.
2019-11-16  drhMore improvements to shadow table corruption detection...
2019-11-16  drhImproved detection of corrupt shadow tables in FTS3...
2019-11-16  drhMore restrictions on changes to shadow tables when...
2019-11-16  drhDo not allow CREATE TABLE or CREATE VIEW of an object... defensive-improvements
2019-11-16  drhBreak out the test for writable shadow tables into...
2019-11-16  drhDo not allow shadow tables to be dropped in defensive...
2019-11-16  drhFix a potential NULL pointer dereference on a RENAME...
2019-11-15  drhModify three test cases so that they work even with...
2019-11-15  drhFix table-valued functions so that they will work as...
2019-11-14  drhAdd support for the sqlite3_hard_heap_limit64() interfa...
2019-11-14  drhFix a bug in the hard_heap_limit pragma so that it... hard-heap-limit
2019-11-14  drhMerge recent enhancements from trunk.
2019-11-14  drhMinor documentation enhancements. No changes to code.
2019-11-14  drhNew test cases added to fuzzdata8.db.
2019-11-14  drhEnsure that the same subquery does not go through the...
2019-11-13  mistachkinAdd header guard to the expert extension.
2019-11-13  drhFix the sqlite3TreeView() output to consistently use...
2019-11-12  drhFor for the previous check-in: Always enable the nUri...
2019-11-12  drhEnsure that the main filename and the journal filenames...
2019-11-12  drhRemove a harmless unused variable.
2019-11-11  danRemove an asm() block from build tool mksourceid.c...
2019-11-10  drhProper surrogate pair decoding added to JSON functions...
2019-11-10  drhRemove an incorrect ALWAYS() macro.
2019-11-09  drhChange the COLFLAG_NOTAVAIL bitmask so that it fits...
2019-11-09  drhNew dbsqlfuzz test cases added.
2019-11-09  drhMake sure the WITH stack in the Parse object is disable...
2019-11-08  drhWhen a virtual table reports orderByConsumed, that...
2019-11-07  drhFix the xferCompatibleIndex() function so that it recog...
2019-11-07  drhRestore generated column loop detection logic that...
2019-11-06  drhChange the way generated columns are computed so that...
2019-11-06  mistachkinMinor simplification to the changes from check-in ...
2019-11-06  drhFix the OP_DeferredSeek index-to-table column map in...
2019-11-06  drhFix the handling of NOT NULL constraint violations...
2019-11-04  drhChanges an unreachable testcase() into an assert().
2019-11-04  drhFix a false-postive in the sqlite3ExprImpliesNonNullRow...
2019-11-03  drhThe optimization of check-in [9b2879629c34fc0a] is...
2019-11-02  drhFix a problem in VIEW creation that was introduced...
2019-11-02  drh"STORED" is not actually a keyword. The parser looks...
2019-11-02  drhIn sqlite3GenerateIndexKey(), do not attempt to reuse...
2019-11-02  drhRestore the on-line ".help" for the ".explain" command...
2019-11-01  drhFix a harmless compiler warning.
2019-11-01  drhThe SET DEFAULT and SET NULL conflict resolution action...
2019-11-01  drhFix a potential use-after-free bug that follows an...
2019-11-01  drhAdd another missing column number translation to the...
2019-11-01  drhOmit the optimization that reduces the column-count...
2019-11-01  danFix an fts3 assert() that could fail when operating...
2019-11-01  drhAdd missing column translations to foreign key logic.
2019-11-01  drhFix a potential array bounds overflow in the mkkeywordh...
2019-11-01  drhSlightly faster keyword hash table.
2019-10-31  drhCorrectly generate pre-UPDATE content for virtual colum...
2019-10-31  drhAdd a few simple TCL test cases for generated columns...
2019-10-31  drhIgnore differences in Expr.op2 in sqlite3ExprCompare...
2019-10-31  drhEnhance the TreeView logic to show information about...
2019-10-30  drhAlways disallow the use of non-deterministic functions...
2019-10-30  drhSimplify the bytecode generation for SQL function calls...
2019-10-30  drhNew tokens ALWAYS, GENERATED, and STORED used by genera...
2019-10-29  drhRemove the legacy_file_format PRAGMA. In its place...
2019-10-29  drhTighten the generated column requirement such that...
2019-10-29  drhAdd a missing translation from table column numbers...
2019-10-29  drhDisallow tables that have only virtual columns.
2019-10-28  danFix a problem in fts3 causing it to report corruption...
2019-10-28  drhRemove a NEVER() comparison from sqlite3ExprCompare().
2019-10-28  drhALWAYS macro added for coverage.
2019-10-27  drhImproved detection of attempts to use a generated colum...
2019-10-26  drhRemove code from the constraint checker that generates...
2019-10-26  drhRemove redundant code resulting from a merge error...
2019-10-26  drhAdd support for generated columns.
2019-10-26  drhPerformance optimization on sqlite3GenerateConstraintCh...
2019-10-26  drhClarify some comments and add assert() and testcase...
2019-10-26  drhFix a problem in the legacy ".explain on" formatting...
next