Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the change log for the 2.4.8 release. (CVS 539) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c01bc2d19e8592fe3b1a5202926be649 |
User & Date: | drh 2002-04-20 14:44:01.000 |
Context
2002-04-20
| ||
14:45 | Version 2.4.8 (CVS 538) (check-in: d703a2c5c4 user: drh tags: trunk) | |
14:44 | Update the change log for the 2.4.8 release. (CVS 539) (check-in: c01bc2d19e user: drh tags: trunk) | |
14:24 | Fix for ticket #1: Implement the GLOB and LIKE operators as functions that can be overridden. This way, a developer can change the LIKE operator to be case sensitive, for example. (CVS 537) (check-in: 51572bf717 user: drh tags: trunk) | |
Changes
Changes to www/changes.tcl.
︙ | ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2002 Apr 06 (2.4.7)} { <li>Add the ability to put TABLE.* in the column list of a SELECT statement.</li> <li>Permit SELECT statements without a FROM clause.</li> <li>Added the <b>last_insert_rowid()</b> SQL function.</li> } chng {2002 Apr 02 (2.4.6)} { <li>Bug fix: Correctly handle terms in the WHERE clause of a join that do not contain a comparison operator.</li> } | > > > > > > > > > > > > > > > > | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2002 Apr 20 (2.4.8)} { <li>Make sure VIEWs are created after their corresponding TABLEs in the output of the <b>.dump</b> command in the shell.</li> <li>Speed improvements: Do not do synchronous updates on TEMP tables.</li> <li>Many improvements and enhancements to the shell.</li> <li>Make the GLOB and LIKE operators functions that can be overridden by a programmer. This allows, for example, the LIKE operator to be changed to be case sensitive.</li> } chng {2002 Apr 06 (2.4.7)} { <li>Add the ability to put TABLE.* in the column list of a SELECT statement.</li> <li>Permit SELECT statements without a FROM clause.</li> <li>Added the <b>last_insert_rowid()</b> SQL function.</li> <li>Do not count rows where the IGNORE conflict resultion occurs in the row count.</li> <li>Make sure functions expressions in the VALUES clause of an INSERT are correct.</li> <li>Added the <b>sqlite_changes()</b> API function to return the number of row that changed in the most recent operation.</li> } chng {2002 Apr 02 (2.4.6)} { <li>Bug fix: Correctly handle terms in the WHERE clause of a join that do not contain a comparison operator.</li> } |
︙ | ︙ |