summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/sec_behind_master-5114.result
blob: 5554b17347de1be8db8d66e3f6e17d61fe3e5e10 (plain)
1
2
3
4
5
6
7
8
9
10
include/master-slave.inc
[connection master]
call mtr.add_suppression("Unsafe statement written to the binary log");
CREATE TABLE t1 (a int);
INSERT INTO t1 VALUES(SLEEP(2));
Seconds_Behind_Master: 1
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.
drop table t1;
include/rpl_end.inc