0
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 11 hours ago. based on code collected about 11 hours ago.
Feb 04, 2025 — Feb 04, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Documentation that should have been checked in along with checkin (614) (CVS 615) More... over 23 years ago
Add RAISE() function, which allows more advanced flow-control in trigger programs (ticket #55) (CVS 614) More... over 23 years ago
Fix the spelling of sqliteRegisterBuiltinFunctions(). (CVS 613)
drh
More... over 23 years ago
Added tests for the new IN operator optimizer and fixed a bug that the new tests found. This completes the implementation of enhancement #63. (CVS 612)
drh
More... over 23 years ago
Fix for ticket #65: If an integer value is too big to be represented as a 32-bit integer, then treat it as a string. (CVS 611)
drh
More... over 23 years ago
Add optimizations for the IN operator in WHERE clauses. This is a partial implementation of enhancement #63. Still need to add test cases. (CVS 610)
drh
More... over 23 years ago
Bug fix: do not segfault if a SELECT without a FROM clause includes the * wildcard in the result column list. (CVS 609)
drh
More... over 23 years ago
Fix for ticket #59: Add documentation for the || operator. Also added documentation for the new SQL92 join syntax. (CVS 608)
drh
More... over 23 years ago
Fix for ticket #62: Do not report an SQLITE_READONLY error until the application actually tries to write data into a readonly file. It is OK to start a transaction on a read-only file, and doing so will get you a read lock. This change allows TEMP tables to be read/write even though the main database is readonly. (CVS 607)
drh
More... over 23 years ago
Additional grammar cleanup resulting from the %fallback directive. (CVS 606)
drh
More... over 23 years ago
Added the %fallback directive to the lemon parser generator and used this in the parser to make the parse tables much smaller. This reduced the size of the library by 15K. (CVS 605)
drh
More... over 23 years ago
Fix a compiler warning. (CVS 604)
drh
More... over 23 years ago
Add the ability to parse FOREIGN KEYs. Foreign keys are still ignored, but at least they now do not cause a syntax error. (CVS 603)
drh
More... over 23 years ago
Enhance the ORDER BY clause so that an integer term means to sort by the corresponding column. (CVS 602)
drh
More... over 23 years ago
Multiplying NULL by zero gives NULL, not zero. I misread the test data and coded it wrong. This check-in fixes the problem. (CVS 601)
drh
More... over 23 years ago
Refinements to NULL processing: NULLs are indistinct for DISTINCT and UNION. Multiplying a NULL by zero yields zero. In a CASE expression, a NULL comparison is considered false, not NULL. With these changes, NULLs in SQLite now work the same as in PostgreSQL and in Oracle. (CVS 600)
drh
More... over 23 years ago
Once it is opened, leave the checkpoint journal file open for the duration of a transaction, rather than closing it and reopening it for each statement. (Ticket #53) (CVS 599)
drh
More... over 23 years ago
Bug fix: bad code was generated for when the first operand of a CASE was NULL. (CVS 598)
drh
More... over 23 years ago
Built-in aggregate functions (MIN, SUM, AVG, etc) should ignore NULL entires. (CVS 597)
drh
More... over 23 years ago
Remove extra \ characters from temporary filenames under windows. (Ticket #52) (CVS 596)
drh
More... over 23 years ago
Update trigger2.test to match checkin 591. Also fix ticket #51 (by documenting problem) (CVS 595) More... over 23 years ago
A SELECT statement inside the body of a TRIGGER uses the SRT_Discard target to discard the query results. Such selects are intended to be used to call user-defined functions for their side-effects. They do not return results. (CVS 594)
drh
More... over 23 years ago
Fix the "alias.*" bug found by Bernie Cosell and reported on the newsgroup. (CVS 593)
drh
More... over 23 years ago
Bug fixes and additional test cases for the distinct-NULL patch. (CVS 592)
drh
More... over 23 years ago
Require the INSTEAD OF syntax to create triggers on database views. (CVS 591) More... over 23 years ago
Change functions to handle NULLs correctly. Added the NULLIF() function. (CVS 590)
drh
More... over 23 years ago
NULL values are distinct. A comparison involving a NULL is always false. Operations on a NULL value yield a NULL result. This change makes SQLite operate more like the SQL spec, but it may break existing applications that assumed the old behavior. All the old tests pass but we still need to add new tests to better verify the new behavior. Fix for ticket #44. (CVS 589)
drh
More... over 23 years ago
Additional testing of LEFT OUTER JOIN. (CVS 588)
drh
More... over 23 years ago
Initial implementation of LEFT OUTER JOIN including the expanded SQL92 join syntax. The basic functionality is there but there is still a lot of testing to do. (CVS 587)
drh
More... over 23 years ago
Add support for the full SQL join syntax. This is just a parser enhancement. We now recognize all kinds of joins, but we don't actually do anything with them yet. (CVS 586)
drh
More... over 23 years ago