List:Commits« Previous MessageNext Message »
From:paul Date:November 13 2006 5:52am
Subject:svn commit - mysqldoc@docsrva: r3921 - in trunk: . refman-4.1 refman-5.0 refman-5.1
View as plain text  
Author: paul
Date: 2006-11-13 05:52:15 +0100 (Mon, 13 Nov 2006)
New Revision: 3921

Log:
 r12012@frost:  paul | 2006-11-12 22:51:51 -0600
 Documenting bugfixes:
 Bug#18819
 Bug#19111
 Bug#19356
 Bug#19660
 Bug#19745


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:15596
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:12009
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:11757
   + 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:15596
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:12012
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:11757


Modified: trunk/refman-4.1/news-4.1.xml
===================================================================
--- trunk/refman-4.1/news-4.1.xml	2006-11-11 22:43:33 UTC (rev 3920)
+++ trunk/refman-4.1/news-4.1.xml	2006-11-13 04:52:15 UTC (rev 3921)
Changed blocks: 3, Lines Added: 34, Lines Deleted: 0; 1740 bytes

@@ -160,6 +160,24 @@
     </para>
 
     <para>
+      Functionality added or changed:
+    </para>
+
+    <itemizedlist>
+
+      <listitem>
+        <para>
+          <command>mysqldump --single-transaction</command> now uses
+          <literal>START TRANSACTION /*!40100 WITH CONSISTENT SNAPSHOT
+          */</literal> rather than <literal>BEGIN</literal> to start a
+          transaction, so that a consistent snapshot will be used on
+          those servers that support it. (Bug #19660)
+        </para>
+      </listitem>
+
+    </itemizedlist>
+
+    <para>
       Bugs fixed:
     </para>
 

@@ -167,6 +185,15 @@
 
       <listitem>
         <para>
+          Transient errors in replication from master to slave may
+          trigger multiple <literal>Got fatal error 1236: 'binlog
+          truncated in the middle of event'</literal> errors on the
+          slave. (Bug #4053)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           If <literal>COMPRESS()</literal> returned
           <literal>NULL</literal>, subsequent invocations of
           <literal>COMPRESS()</literal> within a result set or within a

@@ -271,6 +298,13 @@
 
       <listitem>
         <para>
+          <literal>DELETE IGNORE</literal> could hang for foreign key
+          parent deletes. (Bug #18819)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           The value of <literal>LAST_INSERT_ID()</literal> was not
           always updated correctly within stored routines. (Bug #21726)
         </para>


Modified: trunk/refman-5.0/news-5.0.xml
===================================================================
--- trunk/refman-5.0/news-5.0.xml	2006-11-11 22:43:33 UTC (rev 3920)
+++ trunk/refman-5.0/news-5.0.xml	2006-11-13 04:52:15 UTC (rev 3921)
Changed blocks: 1, Lines Added: 0, Lines Deleted: 9; 740 bytes

@@ -1467,15 +1467,6 @@
 
       <listitem>
         <para>
-          Transient errors in replication from master to slave may
-          trigger multiple <literal>Got fatal error 1236: 'binlog
-          truncated in the middle of event'</literal> errors on the
-          slave. (Bug #4053)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
           Inserts into <literal>BIT</literal> columns of
           <literal>FEDERATED</literal> tables did not work. (Bug #14532)
         </para>


Modified: trunk/refman-5.0/releasenotes-es-5.0.xml
===================================================================
--- trunk/refman-5.0/releasenotes-es-5.0.xml	2006-11-11 22:43:33 UTC (rev 3920)
+++ trunk/refman-5.0/releasenotes-es-5.0.xml	2006-11-13 04:52:15 UTC (rev 3921)
Changed blocks: 2, Lines Added: 49, Lines Deleted: 0; 2140 bytes

@@ -80,6 +80,16 @@
         </para>
       </listitem>
 
+      <listitem>
+        <para>
+          <command>mysqldump --single-transaction</command> now uses
+          <literal>START TRANSACTION /*!40100 WITH CONSISTENT SNAPSHOT
+          */</literal> rather than <literal>BEGIN</literal> to start a
+          transaction, so that a consistent snapshot will be used on
+          those servers that support it. (Bug #19660)
+        </para>
+      </listitem>
+
     </itemizedlist>
 
     <para>

@@ -384,6 +394,45 @@
 
       <listitem>
         <para>
+          <command>mysqldump --xml</command> produced invalid XML for
+          <literal>BLOB</literal> data. (Bug #19745)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          For a debug server, a reference to an undefined user variable
+          in a prepared statment executed with
+          <literal>EXECUTE</literal> caused an assertion failure. (Bug
+          #19356)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Within a trigger for a base table, selecting from a view on
+          that base table failed. (Bug #19111)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <literal>DELETE IGNORE</literal> could hang for foreign key
+          parent deletes. (Bug #18819)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Transient errors in replication from master to slave may
+          trigger multiple <literal>Got fatal error 1236: 'binlog
+          truncated in the middle of event'</literal> errors on the
+          slave. (Bug #4053)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           The value of the <literal>warning_count</literal> system
           variable was not being calculated correctly (also affecting
           <literal>SHOW COUNT(*) WARNINGS</literal>). (Bug #19024)


Modified: trunk/refman-5.1/news-5.1.xml
===================================================================
--- trunk/refman-5.1/news-5.1.xml	2006-11-11 22:43:33 UTC (rev 3920)
+++ trunk/refman-5.1/news-5.1.xml	2006-11-13 04:52:15 UTC (rev 3921)
Changed blocks: 3, Lines Added: 49, Lines Deleted: 9; 2656 bytes

@@ -88,6 +88,16 @@
         </para>
       </listitem>
 
+      <listitem>
+        <para>
+          <command>mysqldump --single-transaction</command> now uses
+          <literal>START TRANSACTION /*!40100 WITH CONSISTENT SNAPSHOT
+          */</literal> rather than <literal>BEGIN</literal> to start a
+          transaction, so that a consistent snapshot will be used on
+          those servers that support it. (Bug #19660)
+        </para>
+      </listitem>
+
     </itemizedlist>
 
     <para>

@@ -107,6 +117,45 @@
 
       <listitem>
         <para>
+          <command>mysqldump --xml</command> produced invalid XML for
+          <literal>BLOB</literal> data. (Bug #19745)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          For a debug server, a reference to an undefined user variable
+          in a prepared statment executed with
+          <literal>EXECUTE</literal> caused an assertion failure. (Bug
+          #19356)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Within a trigger for a base table, selecting from a view on
+          that base table failed. (Bug #19111)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <literal>DELETE IGNORE</literal> could hang for foreign key
+          parent deletes. (Bug #18819)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Transient errors in replication from master to slave may
+          trigger multiple <literal>Got fatal error 1236: 'binlog
+          truncated in the middle of event'</literal> errors on the
+          slave. (Bug #4053)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           The value of the <literal>warning_count</literal> system
           variable was not being calculated correctly (also affecting
           <literal>SHOW COUNT(*) WARNINGS</literal>). (Bug #19024)

@@ -2321,15 +2370,6 @@
 
       <listitem>
         <para>
-          Transient errors in replication from master to slave may
-          trigger multiple <literal>Got fatal error 1236: 'binlog
-          truncated in the middle of event'</literal> errors on the
-          slave. (Bug #4053)
-        </para>
-      </listitem>
-
-      <listitem>
-        <para>
           For table-format output, <command>mysql</command> did not
           always calculate columns widths correctly for columns
           containing multi-byte characters in the column name or


Thread
svn commit - mysqldoc@docsrva: r3921 - in trunk: . refman-4.1 refman-5.0 refman-5.1paul13 Nov