I Use This!
Activity Not Available

Commits : Listings

Analyzed about 1 year ago. based on code collected about 1 year ago.
Jan 16, 2023 — Jan 16, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Allow the sqlite3_config() interface to be invoked at any time for a few choosen options: SQLITE_CONFIG_LOG, SQLITE_CONFIG_URI, and SQLITE_CONFIG_PCACHE_HDRSZ. This list will likely change before release. More... almost 2 years ago
Provide -DHAVE_LOG2=0 and -DHAVE_LOG10=0 compile-time options for use on systems that lack the log2() and log10() standard math library routines, to cause SQLite to substitute its own alternatives. More... almost 2 years ago
Enable the count-of-view optimization by default. Enhancement request [eaed8e36ce888f1e]. More... almost 2 years ago
Avoid computing the values for unused result-set columns in subqueries. Performance optimization request [baa5bb76c35a124c]. More... almost 2 years ago
Update the version number to 3.42.0 to begin the next development cycle. More... almost 2 years ago
Remove the push-down optimization restriction that was added by check-in [1ad41840c5e0fa70] because it is no longer needed after the enhancements to compound query processing in check-in [27655c9353620aa5] This resolves the performance regression reported by [forum:/forumpost/bcc4375032|forum post bcc4375032]. More... almost 2 years ago
Remove some unnecessary bind() calls in JS code. More... almost 2 years ago
Unconditionally disable -sSTRICT_JS flag in wasm build because it no longer works with emsdk 3.1.31+. More... almost 2 years ago
Version 3.41.0 More... almost 2 years ago
Disable DQS by default in the MSVC makefile for the amalgamation tarball. More... almost 2 years ago
Yet another comment typo fix. No changes to working code. More... almost 2 years ago
Fix a minor typo in a comment. No changes to working code. More... almost 2 years ago
Fix formatting and improved documentation on the various sqlite3_file_control() opcodes. Other minor documentation changes. No changes to working code. More... almost 2 years ago
Update the TEA version number to 3.41.0 More... almost 2 years ago
Fix an incorrect #ifdef in the CLI. More... almost 2 years ago
Fix a harmless compiler warning. More... almost 2 years ago
Fix stale requirement marks and fix a typo in the documentation for sqlite3_preupdate_hook(). More... almost 2 years ago
Fix a harmless UBSAN warning in debugging code of the new unhex() function. More... almost 2 years ago
Fix a harmless typo in the test case added by [29fc06465efb948f]. More... almost 2 years ago
Do not allow the COUNTOFVIEW optimization to run if the count() contains a FILTER clause. dbsqlfuzz 4f8e0de6e272bbbb3e1b41cb5aea31e0b47297e3 More... almost 2 years ago
A few simple test cases for the omit-unused-subquery-column optimization. More... almost 2 years ago
Provide an optimization-disable mask for this optimization. Do not do the optimization if the subquery is an aggregate or is distinct, but allow it to be an ephemeral subquery. Do not omit columns that are used in the ORDER BY of the subquery. More... almost 2 years ago
Do not perform the omit-unused-subquery-columns optimizations on a subquery that is DISTINCT, as that can lead to incorrect results. More... almost 2 years ago
Fix the subquery result column NULL-ifier so that it correctly handles subquery columns past the 63rd column. More... almost 2 years ago
Do not compute result columns of subqueries that are never used. Make those columns NULL instead. This optimization potentially resolves the enhancement request described by [baa5bb76c35a124c|ticket baa5bb76c35a124c]. More... almost 2 years ago
Update testrunner.tcl to run zipvfs test scripts on unix. More... almost 2 years ago
Ignore extra parentheses around a subquery on the RHS of an IN operator, because that is what PostgreSQL does. More... almost 2 years ago
Do not allow WHERE clause terms to match constant string index terms, which can happen if DQS_DDL is enabled. Follow-up to [44200596aa943963]. dbsqlfuzz 54c9db85ed4af7055f5fd0d50877875c82b11d46. More... almost 2 years ago
Allow vector-IN expressions like "(a, b) IN ( (?,?), (?,?) )" to use an index. More... almost 2 years ago
Fix compile time option SQLITE_DEFAULT_SYNCHRONOUS so that it works consistently. More... almost 2 years ago