summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/sec_behind_master-5114.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/rpl/r/sec_behind_master-5114.result')
-rw-r--r--mysql-test/suite/rpl/r/sec_behind_master-5114.result6
1 files changed, 5 insertions, 1 deletions
diff --git a/mysql-test/suite/rpl/r/sec_behind_master-5114.result b/mysql-test/suite/rpl/r/sec_behind_master-5114.result
index 17f50f0b612..97e07a09f39 100644
--- a/mysql-test/suite/rpl/r/sec_behind_master-5114.result
+++ b/mysql-test/suite/rpl/r/sec_behind_master-5114.result
@@ -2,10 +2,14 @@ include/master-slave.inc
[connection master]
call mtr.add_suppression("Unsafe statement written to the binary log");
CREATE TABLE t1 (a int);
+connection slave;
+connection master;
INSERT INTO t1 VALUES(SLEEP(2));
+connection slave;
Seconds_Behind_Master_is_less_than_100
1
+connection master;
Warnings:
-Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave.
+Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave
drop table t1;
include/rpl_end.inc