0
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 22 hours ago. based on code collected 1 day ago.
Aug 19, 2025 — Aug 19, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fix an uninitialized variable in the pager. Tickets #208 and #206. Bug introduced by check-in (795). (CVS 804)
drh
More... over 23 years ago
Version 2.7.4 (CVS 803)
drh
More... over 23 years ago
Preparing for the 2.7.4 release. (CVS 802)
drh
More... over 23 years ago
If the "fake_big_file" command fails, be sure to close the file before returning. (CVS 801)
drh
More... over 23 years ago
Make sure the host machine has enough disk space before running the large file tests. (CVS 800)
drh
More... over 23 years ago
Take care not to modify the sqlite* pointer to sqlite_exec() if we suspect that the pointer is stale - that it has previously been passed to sqlite_close(). Possible fix for ticket #202. Prior to this fix, test misuse-5.3 was causing a change to a buffer that had been previously free()-ed. (CVS 799)
drh
More... over 23 years ago
Save the full pathname of the database file so that journalling still works even if the user changes working directories after opening the databae. Ticket #200. (CVS 798)
drh
More... over 23 years ago
Fix a bug in the reverse scan logic that comes up when the table being scanned is empty. Add additional tests for the reverse scan. (CVS 797)
drh
More... over 23 years ago
Fixes to the logic that decides if the ORDER BY can be ignored due to the use of an index. Tests updated. (CVS 796)
drh
More... over 23 years ago
Scan the table backwards if there is an ORDER BY ... DESC clause that can be satisfied by an index. (CVS 795)
drh
More... over 23 years ago
Add the sqliteBtreePrevious() routine to the BTree module API. This is in anticipation of implementing reverse order searching of a table. (CVS 794)
drh
More... over 23 years ago
Allow an aggregate function in the HAVING clause even if no aggregates appear in the result set. Ticket #187. (CVS 793)
drh
More... over 23 years ago
Honor ORDER BY clauses in VIEWs. Ticket #193. (CVS 792)
drh
More... over 23 years ago
Change to the pager to avoid opening journal files unnecessarily. This can sometimes results in a significant speed improvement. (CVS 791)
drh
More... over 23 years ago
Fixed large file support under Linux. I'm unable to test under Windows. Ticket #191. (CVS 790)
drh
More... over 23 years ago
Add the "space_used.tcl" script to the tools directory. This script is used to measure how much disk space is used by each table and index of a database. (CVS 789)
drh
More... over 23 years ago
Automatically determine if pointers are 4 or 8 bytes in size during the compilation process. Ticket #190. (CVS 788)
drh
More... over 23 years ago
Get the new large file code working with the Borland compiler. Ticket #195. (CVS 787)
drh
More... over 23 years ago
Remove extra </TD> from HTML output. Ticket #189. (CVS 786)
drh
More... almost 24 years ago
Back out the changes in the pager that sorted pages prior to writing them to the database. Additional measurements showed no performance gains. (CVS 785)
drh
More... almost 24 years ago
Replace the atoi() library routine with a faster home-grown version in the VDBE. This gives a dramatic speed improvement for some kinds of queries. (CVS 784)
drh
More... almost 24 years ago
Two optimizations to the pager: (1) Write dirty pages back to the database file in order and (2) Keep a separate list of in-memory pages that are in the checkpoint journal in order to speed a checkpoint commit. (CVS 783)
drh
More... almost 24 years ago
Try to better detect when the library is compiled for large file support (LFS) but the support is not available in the host OS kernel. (CVS 782)
drh
More... almost 24 years ago
Add large file support to Windows. Change large file support for Unix so that it compiles automatically - without requiring special options on the compiler command line. (CVS 781)
drh
More... almost 24 years ago
Changes to include files so that the >2GB file patch will compile under BSD. (CVS 780)
drh
More... almost 24 years ago
Update the FAQ to explain how to enable large file support. (CVS 779)
drh
More... almost 24 years ago
Add support for databases larger than 2GB under Unix. Must be compiled with -D_FILE_OFFSET_BITS=64 and -D_LARGEFILE_SOURCE in order to work with larger databases. (CVS 778)
drh
More... almost 24 years ago
Add the sqlite_version() SQL function as a built-in. (CVS 777)
drh
More... almost 24 years ago
Improvements in threadtest.c (for Unix) and some minor bug fixes that result from the better testing. (CVS 776)
drh
More... almost 24 years ago
Version 2.7.3 (CVS 775)
drh
More... almost 24 years ago