]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2022-02-09  drhPrototype implementation of IF EXISTS and IF NOT EXISTS... alter-table-if-exists
2022-02-08  drhWrites to the subjournal should be all-or-nothing....
2022-02-08  drhProvide sqlite3_error_offset() data for some new errors.
2022-02-08  larrybrcomment-only change to sqlite3.h
2022-02-08  drhDo not show the error code number of CLI error messages...
2022-02-08  drhImproved error message formatting in the shell. Distin...
2022-02-07  drhDisable the sqlite3_error_offset() when the error occur...
2022-02-07  larrybrWhen create table/view fails due to name taken, say...
2022-02-06  drhFix unreachable branches in the sqlite3_error_offset...
2022-02-06  drhThe sqlite3_vtab_in() interface should return false...
2022-02-06  drhWith the new ALTER TABLE under PRAGMA writable_schema...
2022-02-06  drhFaster computation of Expr.nHeight.
2022-02-06  drhRecord the error offset on INTEGER tokens.
2022-02-06  drhFurther improvements to localization of errors in input...
2022-02-05  drhEnhance sqlite3_error_offset() to report the position...
2022-02-05  drhRecord the position of many identifiers in the parse...
2022-02-05  drhUpdate stale evidence marks on sqlite3_vtab_rhs_value...
2022-02-05  drhWhen PRAGMA writable_schema=ON, allow ALTER TABLE to...
2022-02-05  drhFix a NULL pointer dereference that can occur after... relaxed-alter-table
2022-02-05  drhFix documentation typo.
2022-02-05  drhTypo fixes in documentation.
2022-02-04  drhTest case for permissive ALTER TABLE RENAME when writab...
2022-02-04  drhOne more case of disabling errors for ALTER TABLE RENAM...
2022-02-04  drhAdd a compile-time option to include vt02.c in fuzzcheck.
2022-02-04  drhAllow ALTER TABLE RENAME COLUMN to proceed even if...
2022-02-04  drhFix various harmless compiler warnings.
2022-02-04  drhFor the MULTI-INDEX-OR optimization, when pushing down...
2022-02-03  drhMinor typo fix in comment. No code changes.
2022-02-03  drhDo not allow the vdbe-compress.tcl script to generate...
2022-02-03  drhProhibit schema changes within xBestIndex callbacks.
2022-02-02  drhImprovement to the sqlite3_vtab_in_first() documentation.
2022-02-02  drhAdd the sqlite3_vtab_in() interface that allows virtual...
2022-02-02  drhAdditional test cases. batch-in-operator
2022-02-02  drhTest cases for sqlite3_vtab_in() and sqlite3_vtab_disti...
2022-02-02  drhImproved documentation for sqlite3_vtab_in(). No code...
2022-02-02  drhRelax the restriction that the RHS of the IN operator...
2022-02-02  drhBe sure that sqlite3_vtab_in_first() and _next() set...
2022-02-02  drhRefactor sqlite3_vtab_in() to make use of the existing
2022-02-02  drhFix a harmless code indentation issue.
2022-02-01  drhTweaks to the sqlite3_vtab_in() interface.
2022-02-01  drhIndex in 2nd argument to sqlite3_vtab_in() should be...
2022-02-01  drhAdd new interfaces to enable virtual table to process...
2022-02-01  drhCLI: Take extra care to not split a multi-byte unicode...
2022-02-01  drhCLI: Add the --ww option as an alias for --wordwrap...
2022-02-01  larrybrAdd "--wordwrap on/off" option for CLI columnar modes...
2022-02-01  drhCLI: In ".mode column" output, if any row contains...
2022-01-31  drhCLI: for columnar output modes, make sure the header...
2022-01-31  drhCLI: Fix a problem with tabs in the new qbox mode.
2022-01-31  drhFix harmless compiler warnings in MSVC.
2022-01-31  drhDo not attempt to limit the number of columns used...
2022-01-31  drhCLI: Enhancements to columnar output modes. (See
2022-01-31  drhFix an obscure problem in sqlite3_backup_init() caused by
2022-01-31  drhCLI: Fix the new ".mode box" output so that it works...
2022-01-30  drhCLI: For columnar modes ("box", "column", "table",...
2022-01-30  drhAlways enable all JSON tests, now that JSON is included...
2022-01-30  drhRemove a faulty NEVER(). Fix for dbsqlfuzz 4678cf825d2...
2022-01-29  drhDocumentation enhancements. No code changes.
2022-01-28  drhAdd the SQLITE_INDEX_CONSTRAINT_LIMIT and SQLITE_INDEX_...
2022-01-28  drhAdd a NEVER() on an unreachable branch. vtab-limit-offset
2022-01-28  drhWhen nesting Parse objects, make sure the new one has...
2022-01-28  drhInclude hidden columns of table valued functions that...
2022-01-28  drhRemove a NEVER() that has become reachable now that...
2022-01-28  drhEnable SQLITE_INDEX_CONSTRAINT_LIMIT/OFFSET even if...
2022-01-27  drhQuery planner always honors the aConstraintUsage[]...
2022-01-27  drhMake LIMIT and OFFSET values available to sqlite3_vtab_...
2022-01-27  drhGive the virtual table xBestIndex method access to...
2022-01-27  drhEnforce the restriction that 'unixepoch' only works...
2022-01-25  drhMinor adjustment to error handling in sqlite3FinishCodi...
2022-01-24  drhRemove an unnecessary assert() that is sometimes not...
2022-01-24  drhNew dbsqlfuzz cases added to test/fuzzdata8.db.
2022-01-24  drhOne of the ALWAYS() macros in the previous check-in...
2022-01-24  drhAdd ALWAYS() macros. Change some existing ALWAYS(...
2022-01-24  drhRemove many redundant checks for sqlite3.mallocFailed...
2022-01-24  drhMake it so that any Parse object is always linked into...
2022-01-24  larrybrFix testcase for CLI .read recursion.
2022-01-24  drhMake sure the sqlite3OomFault() routine sets an error...
2022-01-24  danEnsure that any error encountered while coding a trigge...
2022-01-24  larrybrLimit CLI input redirect nesting
2022-01-22  drhAdd support for the sqlite3_vtab_distinct() interface...
2022-01-22  drhBring sqlite3_vtab_distinct() up to spec so that it... sqlite3_vtab_distinct
2022-01-22  drhIimproved documentation for sqlite3_vtab_distinct(...
2022-01-22  drhOmit the WhereLoopBuilder.pOrderBy field, which is...
2022-01-22  drhAn initial attempt to implement sqlite3_vtab_distinct().
2022-01-21  drhUpdate evidence marks for the latest changes to the...
2022-01-21  drhFix some of the new date/time function features to...
2022-01-21  drhWhen computing a vector to be used as a key for an...
2022-01-21  drhAdd the sqlite3_vtab_rhs_value() interface, allowing...
2022-01-21  drhAdd requirements marks and tuning. sqlite3_vtab_rhs_value
2022-01-20  drhTest cases for sqlite3_vtab_rhs_value() based on the...
2022-01-20  drhEnhancements to the qpvtab virtual table to make it...
2022-01-20  drhInitial implementation of the sqlite3_vtab_rhs_value...
2022-01-20  drhA better and more robust fix for the problem of reading...
2022-01-20  drhFix harmless scan-build warnings.
2022-01-20  drhFix the ability to read read-only WAL-mode database...
2022-01-19  drhFix a test result for alterauth2.test due to the recent...
2022-01-18  drhFix ALTER TABLE DROP COLUMN so that it invokes the...
2022-01-17  drhAllow an "IntReal" value to count as a REAL when checki...
2022-01-17  drhFix incorrect testcase() and assert() macros in json...
2022-01-17  drhNever allow the b-tree layers view of the number of...
2022-01-16  drhFix test cases so that they all still work even with...
next