]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2021-08-20  drhImproved error messages for the SQLITE_CONSTRAINT_DATAT... strict-tables
2021-08-20  drhDo not allow the xfer-optimization to move the content...
2021-08-19  drhImproved comments. Fewer opcodes for integrity_check...
2021-08-19  drhEnhance PRAGMA integrity_check so that it verifies...
2021-08-19  drhSTRICT tables require all fields of the PRIMARY KEY...
2021-08-18  drhMerge the WITHOUT ROWID, NOT NULL ON CONFLICT bug fix...
2021-08-18  drhFix ON CONFLICT clause processing for NOT NULL constrai...
2021-08-18  drhTrying to insert an incorrect datatype into a STRICT...
2021-08-18  drhWhat would it be like if you could add the keyword...
2021-08-18  drhRename the Column.eType field to Column.eCType - with...
2021-08-17  drhFix an off-by-one error in the error-handling logic...
2021-08-12  danBy default, do not use memory mapping to access the...
2021-08-11  drhDuring DELETE, if an index entry is missing, do not...
2021-08-11  drhDo not apply the push-down optimization to CTE subqueri...
2021-08-11  drhImproved comment on the OP_OpenDup used to get a new...
2021-08-09  drhFix a compiler warning in pcache1. Reduce the maximum...
2021-08-09  mistachkinFurther improvements to the eOpenState bit values.
2021-08-09  drhEnsure that the pcache1 cache size does not get so...
2021-08-09  drhFix harmless compiler warnings and improve the presenta...
2021-08-09  drhUndocumented "--threadsafe N" option added to the CLI...
2021-08-09  drhImproved Hamming bit-distance between the SQLITE_STATE...
2021-08-09  drhFix comments associated with sqlite3.eOpenState. No...
2021-08-07  drhRefactor sqlite3.magic into sqlite3.eOpenState.
2021-08-06  danFix an RBU problem with restarting an update after...
2021-08-06  drhAttempt to fix the showwal.c utility program so that...
2021-08-06  drhFix harmless compiler warnings. Omit redundant copies...
2021-08-05  drhStore the collating sequence name for each column of...
2021-08-04  drhAdd NEVER() macros on recently introduced unreachable...
2021-08-04  drhAlways prefer built-in SQL functions over app-defined...
2021-08-04  danAvoid using LIKE with the target db in RBU. It is possi...
2021-08-03  drhFix the build for SQLITE_ENABLE_UPDATE_DELETE_LIMIT.
2021-08-03  drhImproved harmony with the reuse-schema branch.
2021-08-02  drhRefactor field names in the Column object, zCnName...
2021-08-02  drhRefactor the Table object to reduce its memory footprint.
2021-07-31  drhRefactor the way that DEFAULT expressions are stored...
2021-07-30  drhRecognize certain standard datatypes ("INT", "INTEGER...
2021-07-30  drhIf a generated column uses the optional keywords GENERA...
2021-07-30  drhAvoid clownfeet in the names columns when the column...
2021-07-30  drhReduce clownfooting in the allocation of the Table...
2021-07-29  drhEnhance the wal.c source file with an ASCII-art schemat...
2021-07-29  drhImprovements to asserts to enforce magic numbers in...
2021-07-29  drhComplete warning-free build on old PPC iBook. wal-asserts
2021-07-29  drhFix an error in one of the assert() statements added...
2021-07-29  drhMinor tweaks to various TCL build scripts so that they...
2021-07-29  drhImprove comments and add new assert() statements in...
2021-07-29  drhRemove ALWAYS() macros that can be true if the internal...
2021-07-28  danAdd test case to ensure that sessions works with DELETE...
2021-07-28  drhFix a harmless uninitialized variable read that occurs...
2021-07-28  drhReduce the scope of a variable in order to fix a harmle...
2021-07-26  larrybrRemove sqldiff --visible-controls option, make it alway...
2021-07-26  larrybrGive sqldiff --visible-controls option to deal with...
2021-07-23  drhEnhance the CLI with the ".connection" command that...
2021-07-22  drhSet the checkSchema flag if a CREATE TABLE parse fails...
2021-07-22  drhFix ALTER TABLE DROP COLUMN so that it generates valid...
2021-07-22  drhOne of the optimizations of check-in [de9c86c9e4cdb34f...
2021-07-21  drhImproved robustness of cursor renumbering in the UNION...
2021-07-20  drhRun a "PRAGMA quick_check", if necessary, on the modifi...
2021-07-20  danAvoid a malfunction that could occur if the same correl...
2021-07-20  drhFix issues in the new ADD COLUMN constraint checking... add-column-constraint-check
2021-07-20  drhDemonstration code to show how NOT NULL and CHECK const...
2021-07-20  drhIt does not work to deserialized into TEMP, so do not...
2021-07-20  mistachkinFix compilation of 'threadtest3' for some older version...
2021-07-19  drhMore precision in comparing integers and floating point...
2021-07-19  danUpdates so that "threadtest3[.exe]" can be built for...
2021-07-19  danIn defensive mode, allow statements that write to shado...
2021-07-19  mistachkinFix minor spacing issues in the MSVC makefile.
2021-07-16  drhTry to omit the ORDER BY clause in subqueries if doing...
2021-07-16  drhMinor comment improvements. omit-subquery-order-by
2021-07-16  larrybrDe-typo sqlite3_expanded_sql() doc
2021-07-16  drhModify the generate_series() table-valued functions...
2021-07-16  drhFix the "main.mk" makefile so that "series.c" is a...
2021-07-16  drhGet the "omit ORDER BY in FROM-clause subqueries" optim...
2021-07-15  mistachkinBy default, do not emit #line directives in the amalgam...
2021-07-15  drhAttempt to omit ORDER BY clauses from FROM-clause subqu...
2021-07-15  drhChange references to the schema table in sqlite3_analyz...
2021-07-14  danFix a use-after-free error in ioerr.test caused by...
2021-07-13  mistachkinEnhance comments pertaining to the interface linkage...
2021-07-13  mistachkinFurther revisions to #line handling for amalgamation...
2021-07-13  larrybrGet correct #line tags into amalgamation for other...
2021-07-13  larrybrGet #line tags into amalgamation, subject to configure.
2021-07-13  larrybrMerge from trunk, rename tool option for its effect line_tags
2021-07-13  danDo not attempt to run Tcl sessions tests unless both...
2021-07-13  larrybrAmalgamation has #line directives by default. Minor...
2021-07-09  larrybrClarify comment on sqlite3.h's interface decaration...
2021-07-09  danFix an assert() that might fail if sqlite3_create_funct...
2021-07-09  drhEnhance the sqlite3_create_function() interfaces to...
2021-07-09  danAdd the usual "#ifdef __cplusplus" magic to header...
2021-07-09  larrybrAllow CLI shell build to #include same user-specified...
2021-07-08  mistachkinRename optional SQLITE_CUSTOM_INC define to SQLITE_CUST...
2021-07-08  larrybrAllow library build to #include a user-specified header.
2021-07-08  danPreserve and return to the user any error message retur...
2021-07-08  drhFix an issue with the SQLite Expert extension when...
2021-07-07  drhFix a harmless compiler warning in the "fuzzcheck"...
2021-07-07  drhFix a harmless compiler warning - duplicate local varia...
2021-07-07  drhFollow-up to [68db1ff9c44fa9c3]: The number of registe...
2021-07-07  danFix a recently introduced segfault that might occur...
2021-07-07  danImprove the error message in cases where there is a...
2021-07-07  danInstead of disallowing writes to fts5 tables if there...
2021-07-06  danHandle "<vector> IN (<vector>, <vector> ...)" in the...
2021-07-05  danDo not allow writes to an fts5 table if there are any...
next