From: jon.stephens
Date: February 22 2009 8:07pm
Subject: svn commit - mysqldoc@docsrva: r13884 - in trunk: refman-5.1 refman-6.0
List-Archive: http://lists.mysql.com/commits/67122
Message-Id: <200902222007.n1MK72IX026363@docsrva.mysql.com>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: jstephens
Date: 2009-02-22 21:07:02 +0100 (Sun, 22 Feb 2009)
New Revision: 13884
Log:
Noted Replication Bug #42851 as a known issue.
Modified:
trunk/refman-5.1/replication-notes.xml
trunk/refman-6.0/replication-notes.xml
Modified: trunk/refman-5.1/replication-notes.xml
===================================================================
--- trunk/refman-5.1/replication-notes.xml 2009-02-22 19:46:38 UTC (rev 13883)
+++ trunk/refman-5.1/replication-notes.xml 2009-02-22 20:07:02 UTC (rev 13884)
Changed blocks: 1, Lines Added: 15, Lines Deleted: 6; 1906 bytes
@@ -1623,23 +1623,32 @@
rows affected is not defined. (Such statements can be replicated
correctly when using STATEMENT mode only if
they also contain an ORDER BY clause.)
- Beginning with MySQL 5.1.24, when such a statement (without
- ORDER BY) is encountered:
+ Beginning with MySQL 5.1.24, when such a statement is
+ encountered:
- when using STATEMENT mode, a warning
+ When using STATEMENT mode, a warning
that the statement is not safe for statement-based
- replication is now issued
+ replication is now issued.
+
+
+ Currently, when using STATEMENT mode,
+ warnings are issued for DML statements containing
+ LIMIT even when they also have an
+ ORDER BY clause (and so are made
+ deterministic). This is a known issue which we are working
+ to resolve in a future MySQL release. (Bug #42851)
+
- when using MIXED mode, the statement is
- now automatically replicated using row-based mode
+ When using MIXED mode, the statement is
+ now automatically replicated using row-based mode.
Modified: trunk/refman-6.0/replication-notes.xml
===================================================================
--- trunk/refman-6.0/replication-notes.xml 2009-02-22 19:46:38 UTC (rev 13883)
+++ trunk/refman-6.0/replication-notes.xml 2009-02-22 20:07:02 UTC (rev 13884)
Changed blocks: 1, Lines Added: 13, Lines Deleted: 4; 1468 bytes
@@ -1615,16 +1615,25 @@
- when using STATEMENT mode, a warning
+ When using STATEMENT mode, a warning
that the statement is not safe for statement-based
- replication is now issued
+ replication is now issued.
+
+
+ Currently, when using STATEMENT mode,
+ warnings are issued for DML statements containing
+ LIMIT even when they also have an
+ ORDER BY clause (and so are made
+ deterministic). This is a known issue which we are working
+ to resolve in a future MySQL release. (Bug #42851)
+
- when using MIXED mode, the statement is
- now automatically replicated using row-based mode
+ When using MIXED mode, the statement is
+ now automatically replicated using row-based mode.