]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2021-02-19  danFix a crash that could occur in ALTER TABLE DROP COLUMN... alter-table-drop-column
2021-02-19  drhOmit an branch made unreachable by the improved error...
2021-02-19  drhThe COLUMN keyword in ALTER TABLE DROP COLUMN is optional.
2021-02-19  drhGive a better error message on DROP COLUMN when attempt...
2021-02-19  drhAdd a NEVER() to an unreachable branch in the DROP...
2021-02-18  drhAdd missing VdbeCoverage() macros.
2021-02-18  drhEnhance renameParseSql() to better handle OOMs.
2021-02-18  drhMerge changes from trunk into the alter-table-drop...
2021-02-18  danFix DROP COLUMN so that it works even if the user has...
2021-02-18  danFix a problem with schema error detection when processi...
2021-02-18  danAdd test cases for ALTER TABLE DROP COLUMN.
2021-02-18  danAvoid invoking the update or pre-update hooks during...
2021-02-18  drhImprovement to the INSERT optimization of check-in...
2021-02-18  drhDisable the optimization of [16ac213c57196361] when the
2021-02-18  danEnsure that the pre-update hook is invoked for INSERT...
2021-02-18  drhAdd missing VdbeCoverage() macros to some of the new...
2021-02-18  drhPerformance optimization in the resolver.
2021-02-18  drhPerformance optimization in the code generator for...
2021-02-17  drhUse the sqlite3ParserAddCleanup() mechanism to ensure...
2021-02-17  danFix a problem with OOM error handling in the new code...
2021-02-17  danMerge trunk changes into this branch.
2021-02-17  danFix various issues with the changes on this branch...
2021-02-17  drhEnhance the ".once" and ".output" commands in the CLI...
2021-02-16  danAdd experimental implementation of ALTER TABLE DROP...
2021-02-16  drhSimplification to the resolveAlias() routine.
2021-02-16  drhNew SELECTTRACE macros more clearly deliniate when...
2021-02-15  drhFix an issue with the LIKE operator when it includes...
2021-02-15  danAdd tests for sqlite3_column_count().
2021-02-15  drhEnsure that the ALTER TABLE statements return 0 for
2021-02-15  danFix an error in the test case fix in [ecd71203].
2021-02-13  drhFix incorrect test name labels in the select1.test...
2021-02-13  drhAvoid manifesting a CTE (or other view) multiple times...
2021-02-13  danFix a problem in the unreleased union-all flattening...
2021-02-12  danFix a test case to account for the fact that different...
2021-02-12  danEnsure RBU tests are run as part of release testing.
2021-02-10  danFix a longstanding problem causing an RBU vacuum to...
2021-02-10  danRemove an assert() added by the previous commit that... shm-lock-fix
2021-02-10  danFix a longstanding problem causing an RBU vacuum to...
2021-02-10  danIn RBU, avoid passing VFS xShmLock calls through to...
2021-02-08  drhCorrectly detect correlated subqueries when resolving...
2021-02-08  drhImproved name resolution for references to a table...
2021-02-07  drhDo not allow RETURNING in the DML statements of a trigger.
2021-02-07  drhFix harmless compiler warnings.
2021-02-06  drhRemove an ALWAYS() and NEVER() in the authorizer that...
2021-02-06  drhFix the OSSFuzz-discovered shift problem from two days...
2021-02-05  drhRemove unreachable code. Fix a shift UB problem introd...
2021-02-04  drhChange the RETURNING algorithm so that outputs accumula...
2021-02-04  drhRemove dead code. Fix RETURNING for INSERT into a... returning-manifested
2021-02-04  drhFix an issue with RETURNING from UPSERT.
2021-02-04  drhSnapshot. New design appears to work on a simple test...
2021-02-04  drhPreliminary changes for a new implementation of RETURNI...
2021-02-04  drhAdd NEVER() to a branch that check-in [5d54d9fd40638138...
2021-02-04  drhPerformance optimization in sqlite3FinishCoding().
2021-02-03  mistachkinCorrections to the 'filepath_normalize' test suite...
2021-02-03  drhChange the name of Vdbe.magic to Vdbe.iVdbeMagic to...
2021-02-03  danAvoid doing any foreign-key constraint related processi...
2021-02-03  drhFix a harmless compiler warning.
2021-02-03  drhAdd support for the RETURNING clause following PostgreS...
2021-02-03  drhFix an assert() that might be off-by-one in the case...
2021-02-03  drhModify the SQLITE_DBCONFIG_ENABLE_TRIGGER setting so... returning
2021-02-03  drhLoad enhancements from trunk into the returning branch.
2021-02-02  drhDo not allow aggregates in a RETURNING clause. Fix...
2021-02-02  danModify the sessions extension to use more efficient...
2021-02-02  drhReport an error if RETURNING is used for DELETE or...
2021-02-02  drhAllow the RETURNING trigger to exist for virtual tables.
2021-02-01  drhAdd a few test cases for RETURNING together with UPDATE...
2021-02-01  drhImproved corrupt database detection in balance_nonroot().
2021-02-01  drhModify RETURNING so that it does not return changes...
2021-01-31  drhMark an unreachable branch as ALWAYS().
2021-01-31  drhNew opcode OP_ChngCntRow used to output the result...
2021-01-31  drhWhen setting the number of result columns in a RETURNIN...
2021-01-30  drhImproved comments on the new code.
2021-01-30  drhAdd an ALWAYS() to an unreachable branch.
2021-01-30  drhChagne the OP_ResultRow opcode so that it does not...
2021-01-30  drhFix a obsolete assert() in the bytecode engine. Improv...
2021-01-30  drhFix handling of an OOM condition in sqlite3AddReturning().
2021-01-30  drhFix a memory deallocation problem that comes up when...
2021-01-30  drhAnother attempt to get trigger selection correct for...
2021-01-30  drhWhen running the RETURNING trigger, if it is tagged...
2021-01-30  drhTest cases added. RETURNING works with UPSERT as does PG.
2021-01-29  drhBetter handling of errors in RETURNING due to corrupt...
2021-01-29  drhRETURNING works even if "PRAGMA count_changes=ON" is...
2021-01-29  drhAllow "*" wildcards in the RETURNING clause.
2021-01-29  drhWorking prototype.
2021-01-29  drhFix possible division-by-zero in the new log() SQL...
2021-01-29  drhIncorporate the sqlite3TriggerList() optimization from...
2021-01-29  drhPerformance optimization (and size reduction) in sqlite...
2021-01-27  drhMerge recent enhancements from trunk.
2021-01-27  drhFix an issue with IN operator optimization introduced by
2021-01-27  danEnsure a cursor used by the SeekScan operator does... fix-2d6e8400
2021-01-25  drhAdd an extra log message in the case of an SQLITE_CORRU...
2021-01-22  drhEnhance the query planner to enable it to use an index...
2021-01-22  drhMerge fixes from trunk. Omit a conditional in isnotnull-opt
2021-01-21  drhDo not allow VACUUM to resize the page_size to 512...
2021-01-21  drhPerformance optimizations in exprAnalyze()
2021-01-21  drhAlways enable the IS NOT NULL optimization, even if...
2021-01-21  danFix a problem caused by using an SQL variable in an...
2021-01-21  danFix a problem caused by using an SQL variable in an... fix-over-trigger
2021-01-20  drhImprovements to the auxiliary "main.mk" makefile so...
2021-01-20  danAdd tests for sqlite3session_memory_used() interface.
next