]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2020-09-30  drhFor the OP_SeekScan opcode, adjust the number of steps... in-scan-vs-index
2020-09-30  drhAdd an sqlite3FaultSim() call to btreeNext() to make...
2020-09-30  drhIn the OP_SeekScan opcode, changes to pOp must occur...
2020-09-29  drhThe OP_SeekScan opcode is a no-op if the cursor is...
2020-09-29  drhCoverage testing of the OP_SeekScan opcode. Fix a...
2020-09-29  drhImproved comments on the new OP_SeekScan opcode.
2020-09-29  drhImproved performance by manually in-lining the sqlite3V...
2020-09-29  drhTypo fix to repair the early-out optimization. Also...
2020-09-29  drhThe OP_SeekScan opcode works, but using it requires...
2020-09-28  drhRevisiting the IN-scan optimization to try to fix it...
2020-09-28  drhSmall performance improvement and size reduction by...
2020-09-28  drhAvoid the possibility of integer overflow on the -...
2020-09-21  mistachkinFix harmless compiler warning seen with MSVC.
2020-09-21  danIn fts5 integrity checks, do not compare the contents...
2020-09-20  drhRemove a new assert() that the compiler finds is always...
2020-09-20  drhAttempt to silence harmless static analyzer warnings...
2020-09-17  danFix a typo in the documentation comment for sqlite3_pre...
2020-09-17  danFix a problem in sqlite-expert causing it to ignore...
2020-09-17  danFix a problem in fts5 causing the in-memory hash table...
2020-09-17  danFix a "jump depends on unitialized value" valgrind...
2020-09-17  drhEarlier detection of corruption in the rtreecheck(...
2020-09-17  drhPrevent use-after-free of the u.vtab.idxStr string...
2020-09-17  drhDISTINCT may not be ignored inside a UNION ALL common...
2020-09-16  drhFix a pair of assert()s in "PRAGMA foreign_key_check...
2020-09-16  drhFix harmless compiler warnings in Lemon.
2020-09-15  danFix a buffer overread found by OSSFuzz that could occur...
2020-09-15  drhDo not invoke usleep() for more than 999999 microseconds.
2020-09-11  danCatch fts5 index corruption caused by issuing 'delete...
2020-09-10  drhTry again to fix the typo in the sqlite3_txn_state...
2020-09-10  drhFix typo in the documentation for the new sqlite3_txn_s...
2020-09-10  drhIf an amalgamation is created using SQLITE_ENABLE_UPDAT...
2020-09-07  danFix another (harmless in practice) tsan error in shared...
2020-09-06  drhRemove an artifical limitation on the length of columns...
2020-09-05  drhFix a bug in Fossil that might cause it to crash if...
2020-09-04  danFix a tsan error that could occur when using shared...
2020-09-04  danEnsure that the busy-handler count is reset at the...
2020-09-01  mistachkinFix harmless compiler warning.
2020-09-01  drhIn the Lemon output, add a prefix comment that explains...
2020-09-01  drhLemon updates: (1) include the #defines for all tokens...
2020-09-01  drhImprovements to the IN-early-out optimization so that...
2020-09-01  drhFix a harmless compiler warning.
2020-08-31  drhNew test-control that returns the number of calls to
2020-08-31  drhFix the documentation for the OP_IdxGT family of opcode...
2020-08-29  danFix a sanitizer warning in zipfile.c.
2020-08-29  danImprove performance of wal-mode locking on unix in...
2020-08-28  danFix handling of an xShmLock(SHARED, UNLOCK) call when... unixshmlock-opt
2020-08-28  danModify the unixShmLock() function to avoid iterating...
2020-08-28  mistachkinAdd the miscellaneous 'series' extension to the shell.
2020-08-28  drhUpdate Lemon documentation. Patches from sgbeal.
2020-08-28  drhFix a couple of unreachable branches.
2020-08-28  danAdd fts5 test to confirm that for a table with columns...
2020-08-27  drhRemove a (harmless) redundant variable from the CLI...
2020-08-27  drhInclude the original text of the CHECK constraint in...
2020-08-27  drhApple the same fix for ticket [9eda2697f5cc1aba] to...
2020-08-27  danDo not attempt to run test script analyze3.test as...
2020-08-26  drhEnhance the ".databases" command in the CLI so that...
2020-08-26  drhIf the argument to the ".read" command in the CLI begin...
2020-08-25  drhAdd support for the sqlite3_txn_state() interface.
2020-08-24  drhReduce the N in the logN term for the sorting cost...
2020-08-24  danCorrectly handle expressions like "x IS (not) true...
2020-08-20  danFix a crash that could occur in SQLITE_MAX_EXPR_DEPTH...
2020-08-20  danAvoid a buffer overrun in test code that could occur...
2020-08-19  drhTry to make SQLite easier to compiler for Mac Catalyst...
2020-08-19  drhDo not skip over TK_IF_NULL_ROW operators when bypassin...
2020-08-19  danUpdate releasetest_data.tcl so that the "Fast-One"...
2020-08-19  danFix a problem in test file bigmmap.test.
2020-08-17  drhFix the -quote option on the CLI to set the correct...
2020-08-16  drhOptimization to sqlite3BeginWriteOperation().
2020-08-15  drhOptimization of the sqlite3SrcListDelete() routine.
2020-08-15  drhRemove more unnecessary sqlite3GetVdbe() calls, replaci...
2020-08-15  drhAvoid unnecessary calls to the sqlite3GetVdbe() routine...
2020-08-15  drhOmit the unnecessary not-NULL check on the upper bound...
2020-08-14  drhWhen doing an UPDATE or DELETE using a multi-column...
2020-08-14  drhUpdate the version number to 3.34.0 for the next develo...
2020-08-14  drhOptimizations to the logic that converts main table... delete-bytecode-optimization
2020-08-14  drhFor UPDATE and DELETE, use OP_DeferredSeek always....
2020-08-14  drhExperimental change to try to get some DELETE operation...
2020-08-14  danFix an inconsequential memory leak in sqldiff. Update...
2020-08-14  drhVersion 3.33.0 version-3.33.0
2020-08-13  danFix "make test" handling of environment variable QUICKT...
2020-08-12  drhImprovement on the previous fix.
2020-08-12  drhFix an assertion() fault in ALTER TABLE found by OSSFuz...
2020-08-11  drhFix harmless USAN warnings from gcc9.
2020-08-11  drhNew test cases for the use of the ieee754 and decimal...
2020-08-11  danModify a test for corruption within the wal checkpoint...
2020-08-11  drhMinor comment fixes. No changes to code.
2020-08-11  drhRemove an unused #define from sqliteInt.h.
2020-08-10  drhSimplify #ifdefs associated with Parse.eParseMode....
2020-08-10  danFix a problem causing test failures in corruptL.test...
2020-08-10  danFix a problem building fts3 separately from the amalgam...
2020-08-10  danFix a shell tool build error caused by some combination...
2020-08-10  drhFix harmless compiler warnings that surface in newer...
2020-08-10  danFix another test script problem in walvfs.test.
2020-08-10  danFix minor test script problems.
2020-08-09  drhFix a harmless compiler warning.
2020-08-08  drhFix the check-in at [41474548ef3f7454] so that it compu...
2020-08-08  danFix test script busy2.test so that it works with the...
2020-08-08  danChanges to busy2.test, corruptL.test and fkey5.test...
2020-08-08  danFix a test script problem causing an error for SQLITE_E...
2020-08-08  drhMove a pointer computation until after OOM checks to...
next