#At file:///home/sven/bzr/b37200-rpl_switch_stm_row_mixed/6.0-bugteam/
2689 Sven Sandberg 2008-06-30 [merge]
Merge from 5.1-bugteam.
modified:
mysql-test/suite/rpl/t/rpl_switch_stm_row_mixed.test
=== modified file 'mysql-test/suite/rpl/t/rpl_switch_stm_row_mixed.test'
--- a/mysql-test/suite/rpl/t/rpl_switch_stm_row_mixed.test 2008-03-28 17:56:43 +0000
+++ b/mysql-test/suite/rpl/t/rpl_switch_stm_row_mixed.test 2008-06-30 11:06:41 +0000
@@ -293,8 +293,16 @@ insert delayed into t2 values(rand());
set @a=2.345;
insert delayed into t2 values(@a);
+# With INSERT DELAYED, rows are written to the binlog after they are
+# written to the table. Therefore, it is not enough to wait until the
+# rows make it to t2 on the master (the rows may not be in the binlog
+# at that time, and may still not be in the binlog when
+# sync_slave_with_master is later called). Instead, we wait until the
+# rows make it to t2 on the slave.
+connection slave;
let $wait_condition= SELECT COUNT(*) = 19 FROM t2;
--source include/wait_condition.inc
+connection master;
# If you want to do manual testing of the mixed mode regarding UDFs (not
# testable automatically as quite platform- and compiler-dependent),
Thread |
---|
• bzr commit into mysql-6.0 branch (sven:2689) | Sven Sandberg | 30 Jun |