Author: jstephens
Date: 2007-10-10 12:31:00 +0200 (Wed, 10 Oct 2007)
New Revision: 8048
Log:
CGE-6.2.7 release:
Added release date and download URL.
Bugfixes documented:
Bug #31470, Bug #31257, Bug #30975, Bug #29509, Bug #25064,
Bug #29565, Bug #30379, Bug #31097, Bug #30624, Bug #30996.
Updated mysql-cluster-cge-releases and mysql-cluster-cge-differences
sections.
Updated info on limitations of online ALTER TABLE operations.
Modified:
trunk/refman-5.1/mysql-cluster-cge.xml
trunk/refman-5.1/news-5.1.xml
trunk/refman-5.1/sql-syntax.xml
Modified: trunk/refman-5.1/mysql-cluster-cge.xml
===================================================================
--- trunk/refman-5.1/mysql-cluster-cge.xml 2007-10-10 08:04:33 UTC (rev 8047)
+++ trunk/refman-5.1/mysql-cluster-cge.xml 2007-10-10 10:31:00 UTC (rev 8048)
Changed blocks: 1, Lines Added: 6, Lines Deleted: 0; 704 bytes
@@ -455,6 +455,12 @@
<xref linkend="drop-index"/>, for more detailed
information. (MySQL 5.1.22-ndb-6.2.5)
</para>
+
+ <para>
+ Additional checks against unsupported
+ <literal>ONLINE</literal> operations were implemented, and
+ unnecessary checks were removed. (MySQL 5.1.22-ndb-6.2.7)
+ </para>
</listitem>
<listitem>
Modified: trunk/refman-5.1/news-5.1.xml
===================================================================
--- trunk/refman-5.1/news-5.1.xml 2007-10-10 08:04:33 UTC (rev 8047)
+++ trunk/refman-5.1/news-5.1.xml 2007-10-10 10:31:00 UTC (rev 8048)
Changed blocks: 4, Lines Added: 92, Lines Deleted: 7; 4646 bytes
@@ -1243,7 +1243,7 @@
<section id="news-5-1-22-ndb-6-2-7">
- <title>Changes in release MySQL 5.1.22-ndb-6.2.7-beta (Not yet released)</title>
+ <title>Changes in release MySQL 5.1.22-ndb-6.2.7-beta (10 October 2008)</title>
<para role="release-level">
This is a new Beta development release, fixing recently
@@ -1251,20 +1251,17 @@
previous &mccge-series; release.
</para>
-<!--
<para>
Like all releases for &mccge-series;, this is a source-only
release which you must compile and install using the
instructions found in <xref linkend="installing-source"/>, and
in <xref linkend="mysql-cluster-building"/>. You can download
the source code archive for this release from the MySQL FTP site
- at
- <ulink url="&base-url-cge-files;mysql-5.1.22-ndb-6.2.7"/>.
+ at <ulink url="&base-url-cge-files;mysql-5.1.22-ndb-6.2.7"/>.
The file
<filename>mysqlcom-5.1.22-ndb-6.2.7-telco.tar.gz</filename> in
this directory contains the complete source archive.
</para>
--->
<note>
<para role="release-non-production">
@@ -1322,9 +1319,23 @@
</para>
</listitem>
+ <listitem>
+ <para>
+ Additional checks were implemented to catch unsupported
+ online <literal>ALTER TABLE</literal> operations. Currently
+ it is not possible to reorder columns or to change the
+ storage engine used for a table via online
+ <literal>ALTER</literal>.
+ </para>
+
+ <para>
+ Some redundant checks made during online creation of indexes
+ were removed.
+ </para>
+ </listitem>
+
</itemizedlist>
-<!--
<para>
This release fixes the following bugs:
</para>
@@ -1333,11 +1344,85 @@
<listitem>
<para>
+ <literal>NDB</literal> tables having names containing
+ non-alphanumeric characters (such as
+ <quote><literal>$</literal></quote>) were not discovered
+ correctly. (Bug #31470)
</para>
</listitem>
+ <listitem>
+ <para>
+ A node failure during a local checkpoint could lead to a
+ subsequent failure of the cluster during a system restart.
+ (Bug #31257)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ A cluster restart could sometimes fail due to an issue with
+ table IDs. (Bug #30975)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <command>ndb_mgm <option>--help</option></command> did not
+ display any information about the <option>-a</option>
+ option. (Bug #29509)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ The cluster log was formatted inconsistently and contained
+ extraneous newline characters. (Bug #25064)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ In some cases, the cluster managment server could log
+ entries multiple times folowing a restart of
+ <command>mgmd</command>. (Bug #29565)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Transaction timeouts were not handled well in some
+ circumstances, leading to excessive number of transactions
+ being aborted unnecessarily. (Bug #30379)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Online <literal>ALTER</literal> operations involving a
+ column whose data type has an implicit default value left
+ behind temporary <filename>.FRM</filename> files, causing
+ subsequent <literal>DROP DATABASE</literal> statements to
+ fail. (Bug #31097)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ The <command>mysqld_safe</command> script had a syntax error
+ in a test operation. (Bug #30624)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Transactions were committed prematurely when <literal>LOCK
+ TABLE</literal> and <literal>SET AUTOCOMMIT=OFF</literal>
+ were used together. (Bug #30996)
+ </para>
+ </listitem>
+
</itemizedlist>
--->
</section>
Modified: trunk/refman-5.1/sql-syntax.xml
===================================================================
--- trunk/refman-5.1/sql-syntax.xml 2007-10-10 08:04:33 UTC (rev 8047)
+++ trunk/refman-5.1/sql-syntax.xml 2007-10-10 10:31:00 UTC (rev 8048)
Changed blocks: 1, Lines Added: 12, Lines Deleted: 0; 938 bytes
@@ -622,8 +622,20 @@
online using the <literal>FIRST</literal>
keyword also fails.
</para>
+
+ <para>
+ In addition, existing table columns cannot be
+ reordered online.
+ </para>
</listitem>
+ <listitem>
+ <para>
+ The storage engine used by the table cannot be
+ changed online.
+ </para>
+ </listitem>
+
</itemizedlist>
</para>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r8048 - trunk/refman-5.1 | jon | 10 Oct |