]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2019-08-29  danFix other problems similar to ticket [c0390363].
2019-08-29  drhAdd a missing VdbeCoverage() macro.
2019-08-29  drhRemove an unreachable branch in the NULLS LAST logic...
2019-08-29  danFix another case where SQLite assumes that if "~(?...
2019-08-29  danAvoid assuming that for "~ (? OR TRUE)" to be true...
2019-08-29  danFix a potential buffer overrun in fts5 caused by corrup...
2019-08-29  drhImprove Lemon so that it enlarges some of its tables...
2019-08-28  drhFix an unreachable branch in sqlite3ParserFallback() lemon-optimization
2019-08-28  drhFurther improvements to parser speed by enlarging looku...
2019-08-28  drhIncrease the size of the yy_lookahead table so that...
2019-08-27  danAdd support for "ORDER BY ... NULLS FIRST" and "ORDER...
2019-08-27  drhThe ALWAYS() added by the previous check-in was incorre...
2019-08-27  drhAdd ALWAYS() to an always true conditional that results...
2019-08-27  drhOmit the "x IN (y)" to "x==y" optimization of check...
2019-08-27  drhIf a TEMP TRIGGER references an auxiliary schema, and...
2019-08-26  drhMerge in recent fixes from trunk. nulls-last
2019-08-26  danTweak the shell tool ".recover" command so that it...
2019-08-26  drhImproved detection of number of column mismatch for...
2019-08-26  drhFix typo in a comment. No code changes.
2019-08-26  drhEnforce 80-character line discipline in the CLI. Minor...
2019-08-24  danMinor performance improvement for balance_nonroot().
2019-08-24  danFix a potential buffer overrun in fts5 caused by corrup...
2019-08-23  drhFix the built-in edit() SQL function in the CLI so...
2019-08-23  danMove some things in parse.y so that TK_COLUMN and TK_AG...
2019-08-23  drhRevise the VDBE comments for NULL-scan so that they...
2019-08-23  drhAdditional simplifications of the WHERE loop code gener...
2019-08-23  drhSimplification of the WHERE loop code generator for...
2019-08-23  drhInvert the meaning of the regBignull flag so that it...
2019-08-23  drhExtra VDBE comments in the NULLS LAST logic provide...
2019-08-22  drhAdd additional VDBE coverage marcros.
2019-08-22  drhMerge fixes from trunk. Also fix a reference to the...
2019-08-22  drhFix the likely(), unlikely(), and likelihood() function...
2019-08-22  drhFix a false-positive in sqlite3ExprNeedsNoAffinityChange().
2019-08-22  drhFix the OP_SeekGE, OP_SeekGT, OP_SeekLE, and OP_SeekLT...
2019-08-21  danAdd missing VdbeCoverage() macros to new code.
2019-08-21  danDisable broken test case in expert1.test.
2019-08-21  danUpdate this branch with latest trunk changes.
2019-08-21  danAvoid assuming that "column IS ?", where column is...
2019-08-21  danFix a broken assert() in the fts3 snippet code that...
2019-08-20  danFurther tests for the special null-handling on this...
2019-08-20  danFix a problem with fts5 "ORDER BY rank" queries when...
2019-08-20  danAdd tests for sort-by-index cases that use IN() and...
2019-08-20  danDo not pass ORDER BY clauses with non-standard NULL...
2019-08-20  danFix a segfault that could occur following an OOM while...
2019-08-20  drhAdd the new sqlite3_drop_modules() interface to the...
2019-08-20  danRetain the affinity of an expression in a WHERE clause...
2019-08-20  mistachkinFix a typo and a harmless compiler warning.
2019-08-19  drhAdd the sqlite3_drop_modules() interface.
2019-08-19  drhOmit the "_except" term from the name of the new interface. sqlite3_drop_modules_except
2019-08-19  danFix problems with window frames that use ORDER BY ...
2019-08-19  danPrevent NULLS FIRST/LAST from being used in CREATE...
2019-08-17  danAdd some extra tests for the lsm virtual table module.
2019-08-17  drhFix to the query planner for the LSM1 extension.
2019-08-17  drhThe experimental sqlite3_drop_modules_except() interface.
2019-08-17  drhFix the new ability to unregister virtual table modules...
2019-08-17  danWhen populating an ephemeral b-tree for the RHS of...
2019-08-17  danAdd tests to ensure that this branch really does fix...
2019-08-17  danFix problem with DESC indexes on this branch.
2019-08-17  drhEnsure the functions that appear to be constant are...
2019-08-17  danMerge trunk changes into this branch.
2019-08-17  drhActivate introspection pragmas by default. The new...
2019-08-17  drhThe SQLITE_DIRECTONLY flag, when added to sqlite3_creat...
2019-08-16  drhAdd the ability to unregister a virtual table module...
2019-08-16  danAdd support for using indexes for some ORDER BY clauses...
2019-08-15  drhFix harmless compiler warnings in the TCL interface.
2019-08-15  drhAdd the SQLITE_DBCONFIG_ENABLE_VIEW option, together...
2019-08-15  drhProvide the SQLITE_DIRECTONLY flag for app-defined... directonly
2019-08-15  drhEnsure that the optional "sz=N" parameter that can...
2019-08-15  danEnsure that SQLite does not attempt to process incompat...
2019-08-15  drhAvoid downgrading SQLITE_CORRUPT errors detected by...
2019-08-15  drhEnsure that the cell overwrite optimization does not...
2019-08-15  drhEarly detection out-of-bounds page numbers on the direc...
2019-08-14  drhAlways check for reads past the end of the file on...
2019-08-13  mistachkinAdd some static to the 'regexp' extension.
2019-08-13  danUpdate test cases so that they work with ICU enabled.
2019-08-13  danUpdate some corruption test cases to take [724f4df9c...
2019-08-13  danFix a problem with RBU function sqlite3rbu_bp_progress...
2019-08-12  drhMake sure the btree cursor overflow cache is cleared...
2019-08-12  danExperimental implementation of NULLS FIRST/LAST. This...
2019-08-12  drhFor the ".testctrl prng_seed" command in the CLI, if...
2019-08-12  drhAdd a TESTCTRL that disables the verification of type...
2019-08-12  drhValidate the type, name, and tbl_name fields of the...
2019-08-10  drhFix the sqliteExprImpliesExpr() routine so that it...
2019-08-10  danAdd extra test cases related to the previous commit.
2019-08-10  drhRemove two incorrect assert() statements from the logic...
2019-08-09  drhAllow the RHS of a row-value IN operator to use a compo...
2019-08-09  mistachkinModify signature of sqlite3VdbeChangeOpcode() to accept...
2019-08-09  drhFix more compiler warnings.
2019-08-08  drhFix harmless compiler warnings.
2019-08-08  drhRemove support for SQLITE_ENABLE_STAT3. The sqlite_sta...
2019-08-08  drhFix a case of the Expr.affinity to Expr.affExpr refacto...
2019-08-08  drhMore legacy STAT3 code removed. omit-stat3
2019-08-08  drhRemove support for STAT3. The sqlite_stat3 tables...
2019-08-08  drhRemove a NEVER() that is reachable from a corrupt database.
2019-08-07  danRemove use of the affinity() function from view.test...
2019-08-07  danAdd "set TMP=%CD%" to the start of each msvc script...
2019-08-07  danEliminate some more cases of redundant sorting in windo...
2019-08-07  drhDo not make SQLITE_READ authorizer calls for tables...
2019-08-06  danEnsure that when the col in an operator like "val IN...
2019-08-06  drhImproved reuse of file descriptors for which close...
next