List:Commits« Previous MessageNext Message »
From:jon Date:July 8 2006 7:42am
Subject:svn commit - mysqldoc@docsrva: r2688 - in trunk: refman-5.1 refman-common
View as plain text  
Author: jstephens
Date: 2006-07-08 09:42:28 +0200 (Sat, 08 Jul 2006)
New Revision: 2688

Log:

Documented Cluster bugfixes:
  Bug #18413, Bug #19645, Bug #20419, Bug #20897
  
As of 5.1, I_S.TABLES.DATA_LENGTH uses 320-KB increments in reporting usage
of Cluster varsize columns.



Modified:
   trunk/refman-5.1/information-schema.xml
   trunk/refman-common/news-5.0.xml
   trunk/refman-common/news-5.1.xml

Modified: trunk/refman-5.1/information-schema.xml
===================================================================
--- trunk/refman-5.1/information-schema.xml	2006-07-07 21:02:55 UTC (rev 2687)
+++ trunk/refman-5.1/information-schema.xml	2006-07-08 07:42:28 UTC (rev 2688)
@@ -631,6 +631,22 @@
           they don't appear in the output of SHOW TABLES, either?
         </remark>
       </listitem>
+      
+      <listitem>
+        <para>
+          For tables using the <literal>NDBCLUSTER</literal> storage
+          engine, beginning with MySQL 5.1.12, the
+          <literal>DATA_LENGTH</literal> column reflects the true amount
+          of storage for variable-width columns. (See Bug #18413.)
+        </para>
+        
+        <para>
+          <emphasis role="bold">Note</emphasis>: Because MySQL Cluster
+          allocates storage for variable-width columns in 10-page
+          extents of 32 kilobytes each, space usage for such columns is
+          reported in increments of 320 KB. 
+        </para>
+      </listitem>
 
       <listitem>
         <para>

Modified: trunk/refman-common/news-5.0.xml
===================================================================
--- trunk/refman-common/news-5.0.xml	2006-07-07 21:02:55 UTC (rev 2687)
+++ trunk/refman-common/news-5.0.xml	2006-07-08 07:42:28 UTC (rev 2688)
@@ -208,6 +208,17 @@
     </para>
 
     <itemizedlist>
+      
+      <listitem>
+        <para>
+          <literal>NDB Cluster</literal>: Running
+          <command>ndbd</command>
+          <option>--nowait-nodes=<replaceable>id</replaceable></option>
+          where <replaceable>id</replaceable> was the node ID of a node
+          that was already running would fail with an invalid error
+          message. (Bug #20419)   
+        </para>
+      </listitem>
 
       <listitem>
         <para>

Modified: trunk/refman-common/news-5.1.xml
===================================================================
--- trunk/refman-common/news-5.1.xml	2006-07-07 21:02:55 UTC (rev 2687)
+++ trunk/refman-common/news-5.1.xml	2006-07-08 07:42:28 UTC (rev 2688)
@@ -478,6 +478,48 @@
           could cause errors or crash the server. (Bug #20583)
         </para>
       </listitem>
+      
+      <listitem>
+        <para>
+          <literal>NDB Cluster</literal>: A race condition could in some
+          cirumstances following a <literal>DROP TABLE</literal>. (Bug
+          #20897)
+        </para>
+      </listitem>
+      
+      <listitem>
+        <para>
+          <literal>NDB Cluster</literal>: Running
+          <command>ndbd</command>
+          <option>--nowait-nodes=<replaceable>id</replaceable></option>
+          where <replaceable>id</replaceable> was the node ID of a node
+          that was already running would fail with an invalid error
+          message. (Bug #20419)   
+        </para>
+      </listitem>
+      
+      <listitem>
+        <para>
+          <literal>NDB Cluster</literal>: When stopping and restarting
+          multiple data nodes, the last node to be restarted would
+          sometimes hang in Phase 100. (Bug #19645)
+        </para>
+      </listitem>
+      
+      <listitem>
+        <para>
+          <literal>NDB Cluster</literal>: The
+          <literal>DATA_LENGTH</literal> and
+          <literal>AVG_ROW_LENGTH</literal> columns of the
+          <literal>INFORMATION_SCHEMA.TABLES</literal> table did not
+          report the size of variable-width column values correctly.
+          (Bug #18413) 
+        </para>
+        
+        <para>
+          See <xref linkend="tables-table"/>, for more information.
+        </para>
+      </listitem>
 
       <listitem>
         <para>

Thread
svn commit - mysqldoc@docsrva: r2688 - in trunk: refman-5.1 refman-commonjon8 Jul