0
I Use This!
Very High Activity

Commits : Listings

Analyzed about 6 hours ago. based on code collected about 7 hours ago.
Aug 06, 2025 — Aug 06, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
The sorter enhancement at [bdc841de10fef65b] contains a bug where it might sort 64-bit integers in the wrong order due to the limited precision of double. Fixed here. More... 2 days ago
Improved performance in the sorter by adding a special case comparison function for when the sorting by floating-point numbers. More... 2 days ago
Fix a single byte buffer overrun in the approximate_match extension. More... 2 days ago
In fts5, account for the possibility of negative docids when allocating a buffer to store the results of merging detail=none prefix lists. Fix for report [bugs:/info/2026-08-04T08:49:27Z | 2026-08-04T08:49:27Z]. More... 2 days ago
Improved comparison function for the sorter, using the idea demonstrated by the patch in [bugs:/info/2026-08-02T13:41:35Z|Bug 2026-08-02T13:41:35Z]. More... 3 days ago
When processing a vector IN(...) term in a WHERE clause, do not add individual terms for each column if the RHS of the IN(...) is a query that is expected to do the special min-max aggregate behaviour. Fix for [bugs:/info/2026-08-03T09:05:06Z | 2026-08-03T09:05:06Z]. More... 3 days ago
When processing a vector IN(...) term in a WHERE clause, do not add individual terms for each column if the RHS of the IN(...) is a query that is expected to do the special min-max aggregate behaviour. Possible fix for [bugs:/info/2026-08-03T09:05:06Z | 2026-08-03T09:05:06Z]. More... 3 days ago
Set O_BINARY for Windows console output in the CLI. Candidate fix for [bugs:/info/2026-08-03T08:52:42Z|bug 2026-08-03T08:52:42Z]. More... 3 days ago
Fix harmless compiler warnings caused by the enhancement at [a67bff640c9e4ffd] More... 4 days ago
Make the test-use-only SQL function fts3_exprtest() (available only if compiled with SQLITE_TEST) more resistant to out-of-bounds inputs. [bugs:/info/2026-08-02T12:28:28Z|Bug 2026-08-02T12:28:28Z] and [bugs:/info/2026-08-02T12:31:40Z|bug 2026-08-02T12:31:40Z]. More... 4 days ago
Cap constraint values on constraints to the amatch virtual table so that they fit into a 32-bit signed integer. [bugs:/info/2026-08-02T13:01:25Z|Bug 2026-08-02T13:01:25Z] More... 4 days ago
Update the header comment on the zipfile extension to state clearly that writes to the ZIP archive are non-transaction. No code changes. [bugs:/info/2026-08-02T14:03:49Z|Bug 2026-08-02T14:03:49Z]. More... 4 days ago
Fix incorrect header comment in the templatevtab.c demo extension. [bugs:/info/2026-08-02T13:49:50Z|Bug 2026-08-02T13:49:50Z] More... 4 days ago
Fix typo in column name generation logic of the (debugging use only) vtablog.c extension. [bugs:/info/2026-08-02T13:56:56Z|Bug 2026-08-02T13:56:56Z] More... 4 days ago
Take care to avoid trying to compute 0.0/0.0 in the diskused extension. If such a value needs to be displayed, show the result as 0.0. [bugs:/info/2026-08-02T12:48:58Z|Bug 2026-08-02T12:48:58Z] More... 4 days ago
Reduce the size of test cases for the closure extension so that they run faster. The closure extension is not important for anything anymore and is retained mostly for historical reference. There is no point in burning CPU cycles testing it with large cases. More... 4 days ago
Enhance the (unsupported) closure extension to support 64-bit "depth" values. [bugs:/info/2026-08-02T13:11:13Z|Bug 2026-08-02T13:11:13Z]. More... 4 days ago
Do not allow the (obsolete and unsupported) closure extension to use itself as its own reference table. [bugs:/info/2026-08-02T13:07:40Z|Bug 2026-08-02T13:07:40Z]. More... 4 days ago
Updates to build instructions, especially on Windows. Fix a harmless compiler working in debug builds on Windows. More... 5 days ago
The use of sqlite3_set_clientdata() to limit recursion in [4687e04d948b787c] is incorrect. Fixed here. More... 6 days ago
Enforce the 1GiB size limit on appendvfs files. [bugs:/info/2026-07-29T06:29:52Z|Bug 2026-07-29T06:29:52Z] More... 8 days ago
Fix the detection ON clauses using tables to the right so that it does not depend on the order of cursor allocation, which is inconsistent with recursive CTEs. Problem introduced by [d96271db6a3a44e5]. Reported by [bugs:/info/2026-07-29T17:50:40Z|Bug 2026-07-29T17:50:40Z]. More... 8 days ago
Improve comments. Move a variable outside of a loop. More... 8 days ago
Avoid assuming that cursor numbers were allocated in order for all SrcList objects when detecting ON clauses that refer to tables to their right. Possible fix for [bugs:/info/2026-07-29T17:50:40Z | 2026-07-29T17:50:40Z]. More... 8 days ago
In the experimental and unsupported amatch.c extension, raise an error if a cost value is out of range even if the rule that the cost applies to will never be used. [bugs:/info/2026-07-29T06:30:13Z|Bug 2026-07-29T06:30:13Z] More... 8 days ago
Do not allow recursion in extension functions sha1_query() or sha3_query(). [bugs:/info/2026-07-29T06:29:33Z|Bug 2026-07-29T06:29:33Z]. More... 8 days ago
Turn redundant loads of the experimental vfsstat.c extension from a stack overflow into a harmless no-op. [bugs:/info/2026-07-29T06:28:47Z|Bug 2026-07-29T06:28:47Z]. More... 8 days ago
Turn redundant registrations of the cksumvfs extension from a stack overflow into a harmless no-op. [bugs:/info/2026-07-29T06:28:31Z|Bug 2026-07-29T06:28:31Z] More... 8 days ago
Return an empty string if an fts3 snippet() is requested for an out-of-range column index. Bug [bugs:/info/2026-07-29T06:30:35Z | 2026-07-29T06:30:35Z]. More... 8 days ago
Always take a copy of a value used to drive an index as part of a RIGHT JOIN loop. Otherwise, the RIGHT JOIN loop and the body of the loop it jumps back into may interfere with each other. Fix for [bugs:/info/2026-07-29T05:33:50Z | 2026-07-29T05:33:50Z]. More... 8 days ago