List:Commits« Previous MessageNext Message »
From:paul Date:April 12 2007 8:03pm
Subject:svn commit - mysqldoc@docsrva: r5852 - in trunk: . refman-4.1 refman-5.0 refman-5.1
View as plain text  
Author: paul
Date: 2007-04-12 20:03:33 +0200 (Thu, 12 Apr 2007)
New Revision: 5852

Log:
 r23255@polar:  paul | 2007-04-12 11:16:38 -0500
 Document bugfixes:
 Bug#21432
 Bug#23171
 Bug#26346


Modified:
   trunk/refman-4.1/news-4.1.xml
   trunk/refman-5.0/news-5.0.xml
   trunk/refman-5.0/releasenotes-es-5.0.xml
   trunk/refman-5.1/news-5.1.xml

Property changes on: trunk
___________________________________________________________________
Name: svk:merge
   - 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:23190
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:18963
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:14593
   + 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:23255
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:18963
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:14593


Modified: trunk/refman-4.1/news-4.1.xml
===================================================================
--- trunk/refman-4.1/news-4.1.xml	2007-04-12 17:48:16 UTC (rev 5851)
+++ trunk/refman-4.1/news-4.1.xml	2007-04-12 18:03:33 UTC (rev 5852)
Changed blocks: 1, Lines Added: 0, Lines Deleted: 8; 769 bytes

@@ -1745,14 +1745,6 @@
 
       <listitem>
         <para>
-          Database and table names have a maximum length of 64
-          characters (even if they contain multi-byte characters), but
-          were being truncated to 64 bytes. (Bug #21432)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
           When using tables created under MySQL 4.1 with a 5.0 server,
           if the tables contained <literal>VARCHAR</literal> columns,
           for some queries the metadata sent to the client could have an


Modified: trunk/refman-5.0/news-5.0.xml
===================================================================
--- trunk/refman-5.0/news-5.0.xml	2007-04-12 17:48:16 UTC (rev 5851)
+++ trunk/refman-5.0/news-5.0.xml	2007-04-12 18:03:33 UTC (rev 5852)
Changed blocks: 1, Lines Added: 2, Lines Deleted: 1; 612 bytes

@@ -1130,7 +1130,8 @@
         <para>
           Database and table names have a maximum length of 64
           characters (even if they contain multi-byte characters), but
-          were being truncated to 64 bytes. (Bug #21432)
+          were being truncated to 64 bytes. (Bug #21432) This patch was
+          reverted in MySQL 5.0.26.
         </para>
       </listitem>
 


Modified: trunk/refman-5.0/releasenotes-es-5.0.xml
===================================================================
--- trunk/refman-5.0/releasenotes-es-5.0.xml	2007-04-12 17:48:16 UTC (rev 5851)
+++ trunk/refman-5.0/releasenotes-es-5.0.xml	2007-04-12 18:03:33 UTC (rev 5852)
Changed blocks: 1, Lines Added: 12, Lines Deleted: 0; 1011 bytes

@@ -318,6 +318,18 @@
 
       <listitem>
         <para>
+          <literal>mysqldump</literal> could crash or exhibit incorrect
+          behavior when some options were given very long values, such
+          as <option>--fields-terminated-by="<replaceable>some very long
+          string</replaceable>"</option>. The code has been cleaned up
+          to remove a number of fixed-sized buffers and to be more
+          careful about error conditions in memory allocation. (Bug
+          #26346)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           Setting a column to <literal>NOT NULL</literal> with an
           <literal>ON DELETE SET NULL</literal> clause foreign key
           crashes the server. (Bug #25927)


Modified: trunk/refman-5.1/news-5.1.xml
===================================================================
--- trunk/refman-5.1/news-5.1.xml	2007-04-12 17:48:16 UTC (rev 5851)
+++ trunk/refman-5.1/news-5.1.xml	2007-04-12 18:03:33 UTC (rev 5852)
Changed blocks: 2, Lines Added: 35, Lines Deleted: 1; 2202 bytes

@@ -417,6 +417,39 @@
 
       <listitem>
         <para>
+          Database and table names have a maximum length of 64
+          characters (even if they contain multi-byte characters), but
+          were being truncated to 64 bytes. (Bug #21432)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          If a rotate event occured in the middle of a non-transaction
+          group, the group position would be updated by the rotate event
+          indicating an illegal group start position that was
+          effectively inside a group. This can happen if, for example, a
+          rotate occurs between an <literal>Intvar</literal> event and
+          the associated <literal>Query</literal> event, or between the
+          table map events and the rows events when using row-based
+          replication. (Bug #23171)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <literal>mysqldump</literal> could crash or exhibit incorrect
+          behavior when some options were given very long values, such
+          as <option>--fields-terminated-by="<replaceable>some very long
+          string</replaceable>"</option>. The code has been cleaned up
+          to remove a number of fixed-sized buffers and to be more
+          careful about error conditions in memory allocation. (Bug
+          #26346)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           Setting a column to <literal>NOT NULL</literal> with an
           <literal>ON DELETE SET NULL</literal> clause foreign key
           crashes the server. (Bug #25927)

@@ -8176,7 +8209,8 @@
         <para>
           Database and table names have a maximum length of 64
           characters (even if they contain multi-byte characters), but
-          were being truncated to 64 bytes. (Bug #21432)
+          were being truncated to 64 bytes. (Bug #21432) An additional
+          fix was made in MySQL 5.1.18.
         </para>
       </listitem>
 


Thread
svn commit - mysqldoc@docsrva: r5852 - in trunk: . refman-4.1 refman-5.0 refman-5.1paul12 Apr