Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Perparations for version 3.2.7. (CVS 2735) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
70937d5cfa10eda66d926d378f30f996 |
User & Date: | drh 2005-09-24 15:10:59.000 |
Context
2005-09-24
| ||
15:25 | Version 3.2.7 (CVS 2736) (check-in: bd141a7c12 user: drh tags: trunk) | |
15:10 | Perparations for version 3.2.7. (CVS 2735) (check-in: 70937d5cfa user: drh tags: trunk) | |
11:01 | Add the SQLite console source code in the contrib section of the source tree. (CVS 2734) (check-in: 079c6348f9 user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 3.2.7 |
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 September 17 (3.2.6)} { <li>Fix a bug that can cause database corruption if a VACUUM (or autovacuum) fails and is rolled back on a database that is larger than 1GiB</li> <li>LIKE optiization now works for columns with COLLATE NOCASE</li> <li>ORDER BY and GROUP BY now use bounded memory</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 | 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 24 (3.2.7)} { <li>GROUP BY now considers NULLs to be equal again, as it should </li> <li>Now compiles on Solaris and OpenBSD and other Unix variants that lack the fdatasync() function</li> <li>Now compiles on MSVC++6 again</li> <li>Fix uninitialized variables causing malfunctions for various obscure queries</li> <li>Correctly compute a LEFT OUTER JOINs that is constrained on the left table only</li> } chng {2005 September 17 (3.2.6)} { <li>Fix a bug that can cause database corruption if a VACUUM (or autovacuum) fails and is rolled back on a database that is larger than 1GiB</li> <li>LIKE optiization now works for columns with COLLATE NOCASE</li> <li>ORDER BY and GROUP BY now use bounded memory</li> |
︙ | ︙ |
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-Sep-16} {Version 3.2.6 - Critical Bug Fix} { This version fixes a bug that can result in database corruption if a VACUUM of a 1 gibibyte or larger database fails (perhaps do to running out of disk space or an unexpected power loss) and is later rolled back. <p> | > > > > > | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | 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-24} {Version 3.2.7} { This version fixes several minor and obscure bugs. Upgrade only if you are having problems. } newsitem {2005-Sep-16} {Version 3.2.6 - Critical Bug Fix} { This version fixes a bug that can result in database corruption if a VACUUM of a 1 gibibyte or larger database fails (perhaps do to running out of disk space or an unexpected power loss) and is later rolled back. <p> |
︙ | ︙ | |||
103 104 105 106 107 108 109 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } | | | 108 109 110 111 112 113 114 115 | } puts { <p align="right"><a href="oldnews.html">Old news...</a></p> </td></tr></table> } footer {$Id: index.tcl,v 1.126 2005/09/24 15:11:00 drh Exp $} |