List:Commits« Previous MessageNext Message »
From:jon Date:July 2 2008 9:37pm
Subject:svn commit - mysqldoc@docsrva: r11069 - trunk/dynamic-docs/changelog
View as plain text  
Author: jstephens
Date: 2008-07-02 21:37:32 +0200 (Wed, 02 Jul 2008)
New Revision: 11069

Log:

Documented Cluster bugfixes:

  Bug #34356, Bug #35393, Bug #35927



Modified:
   trunk/dynamic-docs/changelog/mysqld-1.xml


Modified: trunk/dynamic-docs/changelog/mysqld-1.xml
===================================================================
--- trunk/dynamic-docs/changelog/mysqld-1.xml	2008-07-02 17:45:52 UTC (rev 11068)
+++ trunk/dynamic-docs/changelog/mysqld-1.xml	2008-07-02 19:37:32 UTC (rev 11069)
Changed blocks: 1, Lines Added: 88, Lines Deleted: 0; 2644 bytes

@@ -5,11 +5,99 @@
   %all.entities;
 ]>
 <changelog>
+  
+  <logentry entrytype="bug">
+    <tags>
+      <highlight type="clusterapi"/>
+      <manual type="libndbclient"/>
+    </tags>
+    <bugs>
+      <fixes bugid="35927"/>
+    </bugs>
+    <versions>
+      <version ver="5.1.23-ndb-6.2.15"/>
+      <version ver="5.1.24-ndb-6.3.14"/>
+    </versions>
+    <message>
+      <para>
+        Accesing the debug version of <literal>libndbclient</literal> via
+        <literal>dlopen()</literal> resulted in a segmentation fault.
+      </para>
+    </message>
+  </logentry>
+  
+  
+  <logentry entrytype="feature">
 
+    <tags>
+      <highlight type="clusterreplication"/>
+      <manual type="RESET MASTER"/>
+      <manual type="mysql.ndb_binlog_index"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="34356"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.1.23-ndb-6.2.14"/>
+      <version ver="5.1.23-ndb-6.3.11"/>
+    </versions>
+
+    <message>
+
+      <para>
+        <literal>RESET MASTER</literal> now uses
+        <literal>TRUNCATE</literal> rather than
+        <literal>DELETE</literal> to clear the
+        <literal>mysql.ndb_binlog_index</literal> table. This improves
+        the performance of the statement and is less likely to leave the
+        table in a fragmented state.
+      </para>
+
+    </message>
+
+  </logentry>
+
   <logentry entrytype="bug">
 
     <tags>
       <highlight type="cluster"/>
+      <manual type="VARCHAR"/>
+      <manual type="VARBINARY"/>
+      <manual type="condition pushdown"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="35393"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.1.24-ndb-6.2.16"/>
+      <version ver="5.1.24-ndb-6.3.15"/>
+    </versions>
+
+    <message>
+
+      <para>
+        Where column values to be compared in a query were of the
+        <literal>VARCHAR</literal> or
<literal>VARBINARY</literal>
+        types, <literal>NDBCLUSTER</literal> passed a value padded to
+        the full size of the column, which caused unnecessary data to be
+        sent to the data nodes. This also had the effect of wasting CPU
+        and network bandwidth, and causing condition pushdown to be
+        disabled where it could (and should) otherwise have been
+        applied.
+      </para>
+
+    </message>
+
+  </logentry>
+
+  <logentry entrytype="bug">
+
+    <tags>
+      <highlight type="cluster"/>
       <manual type="mysqld"/>
     </tags>
 


Thread
svn commit - mysqldoc@docsrva: r11069 - trunk/dynamic-docs/changelogjon2 Jul