]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2022-01-01  drhDo not raise an SQLITE_SCHEMA error if in sqlite3Init...
2022-01-01  danFix an assert() in pager.c to avoid the possibility...
2022-01-01  drhAttempt to fix a harmless compiler warning in FTS5.
2022-01-01  danFix an obscure problem with releasing savepoints stored...
2022-01-01  drhRemove an obsolete assert() statement that no longer...
2022-01-01  drhFix a faulty assert() statement - adding a CORRUPT_DB...
2021-12-31  drhMark the REGEXP operator in the built-in extension...
2021-12-31  drhSimplify the sqlite3RunParser() routine by omitting...
2021-12-31  mistachkinFix harmless compiler warnings in the shell.
2021-12-31  mistachkinFix harmless compiler warnings seen with MSVC.
2021-12-31  drhPerformance optimization and size reduction in sqlite3R...
2021-12-31  drhMove the pTriggerPrg and pCleanup elements of the Parse...
2021-12-30  drhRemove unnecessary conditionals around the ORDER BY...
2021-12-30  drhWhen constructing the sqlite3_index_info object for...
2021-12-30  drhWhen a table has an INTEGER PRIMARY KEY ON CONFLICT...
2021-12-30  drhWhen implementing a multi-way compound SELECT using...
2021-12-29  drhMinor changes to shell1.test test results to account...
2021-12-29  drhEnsure that the affinity of columns is honored in the...
2021-12-29  drhAdd the sqlite3_error_offset() interface. Use it to...
2021-12-29  drhMake .read's help tell of piped input
2021-12-29  drhChange an assert() in FTS3 into assert_fts3_nc(), since...
2021-12-29  drhFix the build-breaker bug in test1.c introduced by... build-bug
2021-12-28  larrybrMake .read's help tell of piped input
2021-12-25  drhChange an assert() in FTS3 into assert_fts3_nc(), since...
2021-12-25  drhAdd the sqlite3_error_offset() interface. Use it to...
2021-12-25  drhOne minor change for an exceptional case in sqlite3_err... improved-error-context
2021-12-24  drhAdd the sqlite3_error_offset() interface. Use it in...
2021-12-24  drhFix a minor problem in the CLI introduced by [d15612388...
2021-12-24  drhRaise an error if a schema name is attached to the...
2021-12-23  drhReduce the size of the compiled binary by a couple...
2021-12-21  drhUpdate the README.md to instruct the user to remove...
2021-12-20  drhIn the json1 extension, which compiling it separately...
2021-12-20  danRemove old script ext/fts3/mkfts3amal.tcl, as it doesn...
2021-12-17  drhImproved documentation for the sqlite3_vtab_collation...
2021-12-16  drhFix windowC tests to specify little-endian or big-endia...
2021-12-16  drhGive the correct prefix to tests in the windowC.test...
2021-12-16  drhIn the CLI, omit the ".oom" command (only available...
2021-12-16  drhNew defenses against OOM and corrupt database problems...
2021-12-16  drhFix a typo in the result of one of the new test cases.
2021-12-16  danFix fts3 and fts4 so that they can still be used even...
2021-12-16  drhFix a memory leak in the CLI that occurs after an error...
2021-12-16  drhFix harmless compiler warning in the new Bloom filter...
2021-12-16  drhImproved robustness against OOM in the expert extension.
2021-12-16  drhFix a potential NULL pointer dereference in the CLI...
2021-12-16  drhAdd more tests for OOM conditions in the CLI.
2021-12-15  drhSimplify the generation of the sqlite3_index_info objec...
2021-12-14  drhEnhance the virtual table query planner so that it...
2021-12-14  drhMinor fix to the ORDER BY elimination logic in generate...
2021-12-14  drhOmit the return value from sqlite3VdbeSerialGet() for...
2021-12-13  drhSmall performance optimization and code size reduction...
2021-12-13  drhAdd NEVER() on an unreachable branch in the Bloom filte...
2021-12-13  drhFix an off-by-one error in the Bloom filter pulldown...
2021-12-13  drhRemove unused code.
2021-12-11  drhDo not allow early evaluation of Bloom filters that...
2021-12-10  drhFactor out the logic that does quoting for the SQL...
2021-12-10  drhRename the internal routine constructBloomFilter() to
2021-12-09  drhAdd support for Bloom-filters as a performance optimiza...
2021-12-09  drhRemove unused code and fix comments. Final cleanup... bloom-filter
2021-12-09  drhEnable bloom filters for the right table of a LEFT...
2021-12-09  drhAdd ".mode off" and ".mode count" to the CLI.
2021-12-09  drhAdd ".mode off" and ".mode count" to the CLI.
2021-12-09  drhNew test cases added to test/fuzzdata8.db
2021-12-09  drhDo not attempt to reprepare a prepared statement that...
2021-12-09  drhAdd SQLITE_TESTCTRL_LOGEST and enhance the LogEst utili...
2021-12-08  larrybrClarity tweak for date.c
2021-12-08  drhImprovements on the decision of whether or not to use...
2021-12-08  drhEnhance the sqlite3SrcListAppendFromTerm() routine...
2021-12-08  drhMerge the WhereClause fix from trunk
2021-12-08  drhIn the WhereClause object, do not assume that all TERM_...
2021-12-07  drhDo not generate a Bloom filter if it cannot be used...
2021-12-06  drhImproved EXPLAIN QUERY PLAN output for Bloom filters.
2021-12-06  drhAdd SQLITE_STMTSTATUS_FILTER_HIT and _MISS for tracking...
2021-12-06  drhOmit the OP_FilterInit opcode. Use OP_Blob to initiali...
2021-12-06  drhMerge trunk fixes into the bloom-filter branch.
2021-12-06  danFix an OOB read that could occur in fts5 when processin...
2021-12-06  drhDo not allow SQLITE_LIMIT_LENGTH to be set lower than...
2021-12-06  drhDo not allow certain dangerous ".testctrl" commands...
2021-12-06  drhFix SQLITE_TESTCTRL_IMPOSTER so that it is a harmless...
2021-12-06  drhAttempt to vary the size of Bloom filters based on...
2021-12-05  drhRun as many Bloom filters as possible before index...
2021-12-05  drhTry to run all Bloom filters before any Seeks. This...
2021-12-04  drhMiscellaneous cleanup of the new Bloom-filter code.
2021-12-04  drhAdd VdbeCoverage() macros. Adjust the Bloom-filter...
2021-12-04  drhApply the Bloom filter only on those terms of an index...
2021-12-04  drhAdd the "WITH BLOOM FILTER" clause to the EXPLAIN QUERY...
2021-12-04  drhFirst attempt to use Bloom filters to optimize star...
2021-12-03  drhMerge the sqlite3WhereBegin() simplification from trunk.
2021-12-03  drhFactor the noop-join-elimination optimization out of...
2021-12-03  drhMerge recent trunk enhancements into the bloom-filter...
2021-12-03  drhFix exprAnalyze() after recent performance enhancements...
2021-12-03  drhFix unreachable branches resulting from prior optimizat...
2021-12-03  drhFix an over-length source code line in build.c. No...
2021-12-03  drhPerformance optimization in the B-Tree cursor allocator...
2021-12-02  drhOptimizations to exprAnalyze() and sqlite3WhereExprUsag...
2021-12-02  drhMove the TK_IS token so that it is adjacent to the...
2021-12-02  danIn the shell tool, avoid modifying internal data struct...
2021-12-02  drhRemove an unnecessary branch from exprAnalyze(), result...
2021-12-02  drhSmall performance optimization in sqlite3WhereClauseCle...
2021-12-02  drhMore small performance optimizations for sqlite3WhereGe...
2021-12-02  drhSmall performance optimization in sqlite3WhereGetMask().
next