]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2021-06-15  drhFix an incorrect ifdef in the previous check-in. ifdef-update
2021-06-15  drhFix some minor #ifdef issues so that all of the support...
2021-06-15  drhUpdate the "nmakehlp.c" utility program sources associa...
2021-06-15  drhAdd NULL checks on all sqlite3_vfs_find(0) calls. ...
2021-06-15  drhPrevent an infinite loop in the trim() SQL function...
2021-06-14  drhFix typos in testcase() macros from check-in [c09d90eec...
2021-06-14  drhIn the authorizer, use SQLITE_DROP_INDEX, not SQLITE_DR...
2021-06-14  danFix an ALTER TABLE problem with handling infinite loops...
2021-06-14  danFix a test script problem in corruptN.test.
2021-06-14  drhAn index on the expression "likely(X)" should store...
2021-06-14  drhAvoid allocating oversized column names in the sqllimit...
2021-06-13  drhThe opcode that preceeds OP_SeekScan is usually OP_IdxG...
2021-06-13  drhImproved defense against OOM errors in sqliteInitOne().
2021-06-13  larrybrCorrect link in .ar help.
2021-06-12  drhThe sqlite3WithPush() routine might destroy its second...
2021-06-12  drhThis is an alternative approach to the use-after-free... alternative-oom-fix
2021-06-11  drhReapply two recent ALTER TABLE error checks that turned...
2021-06-11  drhAvoid bugs in some implementations of dlopen() by avoid...
2021-06-11  danFix a crash in new ALTER TABLE code that could follow...
2021-06-11  danRemove an unreachable branch added by the previous...
2021-06-11  danFix problems with ALTER TABLE and schemas that contain...
2021-06-10  drhImproved robustness following OOM in the constant propa...
2021-06-09  drhSet the database connection error code for an oversize...
2021-06-09  danAdd defensive code to better handle corrupt records...
2021-06-08  drhRemove two assert()s in FTS5 that checks for database...
2021-06-08  drhTry to avoid a double-free in the showdb utility progra...
2021-06-08  drhAdd an assert() to prevent the value of the SQLITE_VTAB...
2021-06-08  danAvoid a buffer overread in fts3 that could occur when...
2021-06-07  danFix a buffer overread that could occur in fts5 when...
2021-06-07  danFix a buffer overrun in fts3 that could occur when...
2021-06-07  drhAdd recent dbsqlfuzz test cases to test/fuzzdata8.db.
2021-06-07  drhAvoid use of uninitialized memory while running defragm...
2021-06-07  drhFix an assert() in the OP_ParseSchema opcode that might...
2021-06-07  drhRemove unnecessary end-of-line whitespace from the...
2021-06-07  drhOmit the unnecessary highlighting of the security impli...
2021-06-04  drhA better fix for the problem addressed by [4eb80b0cc615...
2021-06-04  larrybrMake MSVC build examples work when taken literally...
2021-06-04  drhImprovements to the OP_SeekScan optimization. Added the
2021-06-04  drhAdd the (missing) dependency of regexp.c to the shell...
2021-06-04  drhFix harmless compiler warnings.
2021-06-04  drhFix more cases in the regexp extension where the 0x00...
2021-06-04  drhRevamp SQLITE_TESTCTRL_TUNE to provide visibility of... seekscan-improvements
2021-06-04  drhAdd support for SQLITE_TESTCTRL_TUNE and the ".testctrl...
2021-06-04  drhMerge recent trunk enchancements into the seekscan...
2021-06-03  danFix a case where combining row-value UPDATE FROM syntax...
2021-06-03  drhFix the truncate optimization so that PRAGMA count_chan...
2021-06-03  drhAdd the regexp() and regexpi() extension functions...
2021-06-03  drhFix a bug in the regexp extension in which the "."...
2021-06-03  drhFix the case-insensitive version of the regexp() functi...
2021-06-02  drhAdd an optimization control bit to disable the OP_SeekS...
2021-06-02  drhFix an ALWAYS which can be false.
2021-06-02  drhTighten assert() restrictions on the OP_SeekScan opcode.
2021-06-02  drhNever use WHERE_IN_SEEKSCAN for the 2nd or subsequent...
2021-06-02  drhThis is an attempt to address the OP_SeekScan performan...
2021-06-01  mistachkinFix issue in 'mkopcodeh.tcl' tool that prevented its...
2021-06-01  danFix a problem with running ALTER TABLE against schemas...
2021-05-29  drhDo not confuse the ">" operator with IS NOT NULL when...
2021-05-29  drhFix a subtle error in an assert().
2021-05-28  drhMake a deep copy of the result of a subquery in case...
2021-05-28  drhFix a potential memory leak in json_group_object()...
2021-05-27  drhAdd the merge-test.tcl script to ease verification...
2021-05-27  drhImproved comment on the prpagateConstants() routine...
2021-05-27  drhRemove a NEVER that is reachable following OOM in writa...
2021-05-26  drhImprovements to the constant-propagation optimization...
2021-05-26  drhMinor optimization to opcode comparison logic in the... constant-propagation-fix
2021-05-26  danAdd new test file whereM.test. Containing tests for...
2021-05-26  danAvoid assuming that an expression like "x=10" in a...
2021-05-26  drhTake care that the code is not generated for the same...
2021-05-26  danUpdate an assert() in wherecode.c that might fail follo...
2021-05-25  danDo not run sessionbig.test as part of the session_strm...
2021-05-25  danUpdate an allocation routine in the sessions module...
2021-05-25  danEnhance the shell tool ".dump PATTERN" command so that...
2021-05-24  danFix a problem in the in-memory journal code that could...
2021-05-24  drhMinor comment improvements in fuzzcheck.c.
2021-05-24  drhNew dbsqlfuzz cases added to test/fuzzdata8.db.
2021-05-24  drhFix the TreeView module so that it works with the TK_ER...
2021-05-24  drhAdditional defenses (above and beyond [b986600520696b0c...
2021-05-23  drhDo not push a WITH clause onto the processing stack...
2021-05-22  drhDo not invoke sqlite3ExprAffinity() after a syntax...
2021-05-22  drhThe fix in the previous check-in was only correct if...
2021-05-22  drhIf an FTS5 Cursor fails to enlarge the space for the...
2021-05-21  drhIf there are errors in a nested CTE, be sure to abandon...
2021-05-21  danFix a problem with SQLITE_MAX_MEMORY in malloc.c.
2021-05-20  drhFix a faulty assert() statement in sqlite3ExprListDup...
2021-05-20  drhEnhance one test case to use various alternative defini...
2021-05-20  danEnsure that objects within view definitions are not...
2021-05-20  danEnsure the required b-tree mutexes are held for "CREATE...
2021-05-20  drhReplace [0f0959c6f95046e8] with a new and better soluti...
2021-05-20  drhFixes and improvements to PRAGMA compile_options.
2021-05-19  drhWhen constructing the synthensized SELECT statement...
2021-05-19  larrybrIncorporate ..._DESERIALIZE revision. compile_options
2021-05-19  larrybrmerge from trunk
2021-05-19  drhAdd a comment with useful information about SHM locking...
2021-05-19  drhFix a formatting error on the comment. better-comment
2021-05-19  drhAdd a table of shared-memory lock offsets in a comment...
2021-05-19  danAllow aggregate sub-selects within ORDER BY and PARTITI...
2021-05-19  drhImproved column name and column type determination...
2021-05-19  larrybrCure some TCL test failures and narrow an object scope.
2021-05-18  drhIn the MULTI-INDEX OR query plan, code for sub-expressi...
2021-05-18  drhImproved comments on the generated opcodes.h file.
next