]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
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...
2019-10-26  drhMinor changes to help ensure the pointer returned by...
2019-10-26  drhOvernight, OSSFuzz helpfully pointed out a potential...
2019-10-26  drhAdd missing VdbeCoverage() macro. Fix an off-by-one...
2019-10-26  drhIf replace triggers are run during uniqueness checking...
2019-10-25  drhPerformance optimization in sqlite3BtreeCursor().
2019-10-24  drhMerge fixes from trunk. generated-columns
2019-10-24  drhThe previous fix was incomplete. It is also necessary...
2019-10-24  danIn fts5, fix a case of overreading a buffer by 1 byte...
2019-10-24  drhFix handling of covering indexes that use virtual columns.
2019-10-24  drhCorrection to check-in [bec5b6d4d083556d] so that it...
2019-10-24  drhDo not allow ALTER TABLE ADD COLUMN for a STORED column.
2019-10-23  drhAdd an experimental set of UUID processing functions...
2019-10-23  drhWhen a vector comparison appears in the WHERE clause...
2019-10-23  drhMinor adjustments for clarity and test coverage.
2019-10-23  drhFix incorrect arguments to testcase() macros.
2019-10-23  drhFix the foreign key logic to be compatible with generat...
2019-10-22  drhTake the declared column time into account when computi...
2019-10-22  drhMerge the row-value fix from trunk.
2019-10-22  drhDisqualify row-value comparisons for use by an index...
2019-10-22  drhDo not allow generated columns in the PRIMARY KEY.
2019-10-22  drhIn UPDATE processing, include generated columns in...
2019-10-22  drhNew testcase() macros. Fix a problem with INSERT when...
2019-10-22  drhMerge changes on trunk into the generated-columns branch.
2019-10-22  drhPrevious check-in to fix [b47e3627ecaadbde] was incompl...
2019-10-22  drhMove the sqlite3LocateCollSeq(), sqlite3FindCollSeq...
2019-10-22  drhWhen flipping ("commuting") a comparison operator,...
2019-10-21  drhAdd a VdbeCoverage() macro that was omitted from check...
2019-10-21  drhTry to fix a harmless compiler warning reported by...
2019-10-21  drhChanges to the INSERT logic to make it simpler and...
2019-10-20  danFix a resource leak in fts5 that could occur if an...
2019-10-19  drhWork toward getting generated columns to work with...
2019-10-19  drhAdd testcase macros.
2019-10-19  drhRefactor names of column index transformation functions...
2019-10-18  drhFixes for WITHOUT ROWID tables with VIRTUAL columns...
2019-10-18  drhMerge trunk enhancements into the generated-columns...
2019-10-18  drhGet generated columns working for WITHOUT ROWID tables.
2019-10-18  drhEnhance the ".imposter" command in the CLI so that...
2019-10-18  drhClaw back some performance from the sqlite3ExprGetColum...
2019-10-18  drhFix sqlite3ColumnOfIndex() to account for virtual columns.
2019-10-18  drhGet indexes working on virtual columns.
2019-10-18  drhSTORED columns can now reference other STORED columns...
2019-10-17  drhIn the Table object, change the nVCol field to nNVCol...
2019-10-17  drhBug fix with INSERT using an explicit column list on...
2019-10-17  drhSome (but not all) INSERT and UPDATE statements now...
2019-10-17  drhFix the xfer optimization for generated columns, so...
2019-10-17  drhBasic UPDATE functionality working for VIRTUAL tables.
2019-10-17  danAvoid an infinite loop in fts3/4 incremental-merge...
2019-10-17  drhBug fixes so that "make test" once against runs with...
2019-10-17  drhFix the table_info and table_xinfo pragmas so that...
2019-10-16  drhINSERT with named columns for a table with generated...
2019-10-16  drhALTER TABLE is able to add a VIRTUAL column.
2019-10-16  drhSimple INSERT and SELECT operations working with VIRTUA...
2019-10-16  mistachkinEnhancements to SQL query normalization for UPDATE...
2019-10-16  drhIf an AFTER DELETE trigger fires when a conflict row...
2019-10-16  drhInitial experimental code for generated column support...
2019-10-15  drhFormatting change on a multi-line conditional, for...
2019-10-14  drhFuther improvements to the IN operator for row-values...
2019-10-14  drhNew test cases in test/fuzzdata8.db.
2019-10-14  danFix a problem with row-value IN(...) operators and...
2019-10-12  drhWhen Select-Trace is enabled (in debugging builds only...
2019-10-11  danUpdate the zipfile extension to use deflateBound()...
2019-10-11  drhFuther improvements to LEFT JOIN strength reduction.
2019-10-11  drhImprovements to the LEFT JOIN strength reduction optimi...
2019-10-11  danEnsure fts3/4 prefix indexes are flushed to disk before...
2019-10-11  danFix the fts3/4 integrity-check command so that it works...
2019-10-11  drhIncrease the version number to 3.31.0 for the next...
2019-10-11  drhFaster response to sqlite3_interrupt() in the OP_Integr...
2019-10-10  mistachkinUpdate the autoconf makefile for MSVC.
2019-10-10  mistachkinFix harmless compiler warning seen with MSVC.
2019-10-10  danPrevent SQLite from assuming that if ((? IS NOT NULL...
2019-10-10  danFix a problem in the fts3 integrity-check routine causi...
2019-10-10  danBe sure to rewrite column references inside FILTER...
2019-10-09  danAvoid assuming that an expression that contains the...
2019-10-09  danDo not allow users to effectively disable fts5 crisisme...
2019-10-09  drhAn improved fix for the dbsqlfuzz-discovered ALWAYS...
2019-10-09  danDisallow fts5 page sizes greater than 65536 bytes ...
2019-10-09  drhRemove the "fastfuzztest" makefile target. Use only...
2019-10-09  drhNew test cases added to test/fuzzdata8.db.
2019-10-09  drhChange sqlite3SelectDup() to always return NULL if...
2019-10-09  drhUse the "fuzztest" target in place of "fastfuzztest". makefile-cleanup
2019-10-09  drhRemove the obsolete "fastfuzztest" target from the...
2019-10-09  drhSave CPU cycles in sqlite3Prepare() by, among other...
2019-10-08  danFix problems with using the fts5 'rebuild' command...
2019-10-07  danDisallow page-sizes smaller than 32 bytes in fts5....
2019-10-07  drhOmit a pointless memory allocation in vdbeSorterSort().
2019-10-07  danFix a problem with running ALTER TABLE ADD COLUMN state...
next