summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/t/rpl_misc_functions.test
diff options
context:
space:
mode:
authorAlexander Nozdrin <alik@sun.com>2010-02-02 12:26:28 +0300
committerAlexander Nozdrin <alik@sun.com>2010-02-02 12:26:28 +0300
commitab61c15efdf8da4152a98ee218b537ad6da625a9 (patch)
tree3758e33014e6117ad73d491264d79d35d6e1f494 /mysql-test/suite/rpl/t/rpl_misc_functions.test
parent6f957334068d1029f68a923403e3537b92a1e30b (diff)
downloadmariadb-git-ab61c15efdf8da4152a98ee218b537ad6da625a9.tar.gz
BUG#50767: Some RPL tests started to fail in next-mr-merge on
Linux x86_64 debug Two test cases fail because the suppression for the unsafe warning needs to be updated (BUG@39934 refactored this part and these changes are only in mysql-next-mr - this is why we notice them now when merging in next-mr). This is the case for rpl_nondeterministic_functions and rpl_misc_functions test cases. rpl_stm_binlog_direct test case is not needed in version > 5.1. The rpl_heartbeat_basic test case fails because patch for BUG@50397 removed the CHANGE MASTER in the slave that would set it's period to 1/10 of the master. This would cause the test assertion to fail. The fixes for the issues described above are: - rpl_misc_functions - updated suppression message - rpl_nondeterministic_functions - updated suppression message - rpl_stm_binlog_direct - removed the test case (it is not needed in versions > 5.1) - rpl_heartbeat_basic - deployed instruction: CHANGE MASTER TO MASTER_HEARTBEAT_PERIOD=0.1;
Diffstat (limited to 'mysql-test/suite/rpl/t/rpl_misc_functions.test')
-rw-r--r--mysql-test/suite/rpl/t/rpl_misc_functions.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/rpl/t/rpl_misc_functions.test b/mysql-test/suite/rpl/t/rpl_misc_functions.test
index b84042160cd..ce74abe970a 100644
--- a/mysql-test/suite/rpl/t/rpl_misc_functions.test
+++ b/mysql-test/suite/rpl/t/rpl_misc_functions.test
@@ -3,7 +3,7 @@
#
source include/master-slave.inc;
-CALL mtr.add_suppression('Statement may not be safe to log in statement format.');
+CALL mtr.add_suppression('Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT');
create table t1(id int, i int, r1 int, r2 int, p varchar(100));
insert into t1 values(1, connection_id(), 0, 0, "");