Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Documentation changes in preparation for the release of 3.2.6. (CVS 2698) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
243f455c7c4e5c0c56406c197fa78088 |
User & Date: | drh 2005-09-16 02:55:14.000 |
Context
2005-09-16
| ||
09:52 | Fix an auto-vacuum problem with the PENDING_BYTE page. Also link the Tcl variable sqlite_pending_byte to the internal pending-byte location when in test mode. (CVS 2700) (check-in: 9115e0621d user: danielk1977 tags: trunk) | |
02:55 | Documentation changes in preparation for the release of 3.2.6. (CVS 2698) (check-in: 243f455c7c user: drh tags: trunk) | |
02:48 | Undo check-in (2694). (CVS 2697) (check-in: 6017b19625 user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 3.2.6 |
Changes to www/changes.tcl.
︙ | ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | if {[regexp {\(([0-9.]+)\)} $date all vers]} { set label [string map {. _} $vers] puts "<A NAME=\"version_$label\">" } puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2005 August 27 (3.2.5)} { <li>Fix a bug effecting DELETE and UPDATE statements that changed more than 40960 rows.</li> <li>Change the makefile so that it no longer requires GNUmake extensions</li> <li>Fix the --enable-threadsafe option on the configure script</li> <li>Fix a code generator bug that occurs when the left-hand side of an IN | > > > > > > > > > > > > > > | 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 | if {[regexp {\(([0-9.]+)\)} $date all vers]} { set label [string map {. _} $vers] puts "<A NAME=\"version_$label\">" } puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2005 September 16 (3.2.6)} { <li>LIKE optiization now works for columns with COLLATE NOCASE</li> <li>ORDER BY and GROUP BY now use bounded memory</li> <li>Added support for COUNT(DISTINCT expr)</li> <li>Change the way SUM() handles NULL values in order to comply with the SQL standard</li> <li>Use fdatasync() instead of fsync() where possible in order to speed up commits slightly</li> <li>Use of the CROSS keyword in a join turns off the table reordering optimization</li> <li>Added the experimental and undocumented EXPLAIN QUERY PLAN capability</li> <li>Use the unicode API in windows</li> } chng {2005 August 27 (3.2.5)} { <li>Fix a bug effecting DELETE and UPDATE statements that changed more than 40960 rows.</li> <li>Change the makefile so that it no longer requires GNUmake extensions</li> <li>Fix the --enable-threadsafe option on the configure script</li> <li>Fix a code generator bug that occurs when the left-hand side of an IN |
︙ | ︙ |
Changes to www/index.tcl.
︙ | ︙ | |||
61 62 63 64 65 66 67 68 69 70 71 72 73 74 | proc newsitem {date title text} { puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt puts "<p>$txt</p>" puts "<hr width=\"50%\">" } newsitem {2005-Aug-27} {Version 3.2.5} { This release fixes a few more lingering bugs in the new code. We expect that this release will be stable and ready for production use. } newsitem {2005-Aug-24} {Version 3.2.4} { | > > > > > > | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | proc newsitem {date title text} { puts "<h3>$date - $title</h3>" regsub -all "\n( *\n)+" $text "</p>\n\n<p>" txt puts "<p>$txt</p>" puts "<hr width=\"50%\">" } newsitem {2005-Sep-16} {Version 3.2.6} { The ORDER BY and GROUP BY processing was rewritten to use less memory. Support for COUNT(DISTINCT) was added. The LIKE operator can now be used by the optimizer on columns with COLLATE NOCASE. } newsitem {2005-Aug-27} {Version 3.2.5} { This release fixes a few more lingering bugs in the new code. We expect that this release will be stable and ready for production use. } newsitem {2005-Aug-24} {Version 3.2.4} { |
︙ | ︙ | |||
91 92 93 94 95 96 97 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } | | | 97 98 99 100 101 102 103 104 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } footer {$Id: index.tcl,v 1.124 2005/09/16 02:55:15 drh Exp $} |