mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
9bf92706d1
- fix the test to avoid false-negatives before MDEV-5114 patch; - fix the race condition which made the test fail on slow builders
11 lines
472 B
Text
11 lines
472 B
Text
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_is_less_than_100
|
|
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
|