1RESET MASTER;
2call mtr.add_suppression("Error in Log_event::read_log_event*");
3call mtr.add_suppression("Replication event checksum verification failed while reading from a log file*");
4DROP TABLE IF EXISTS t1;
5Warnings:
6Note	1051	Unknown table 'test.t1'
7CREATE TABLE t1 (c1 CHAR(255), c2 CHAR(255), c3 CHAR(255), c4 CHAR(255), c5 CHAR(255));
8INSERT INTO t1 VALUES (repeat('a', 255), repeat('a', 255),repeat('a', 255),repeat('a', 255),repeat('a', 255));
9INSERT INTO t1 VALUES (repeat('a', 255), repeat('a', 255),repeat('a', 255),repeat('a', 255),repeat('a', 255));
10UPDATE t1 SET c1=repeat('b',255);
11INSERT INTO t1 VALUES (repeat('a', 255), repeat('a', 255),repeat('a', 255),repeat('a', 255),repeat('a', 255));
12SHOW BINLOG EVENTS FROM POS;
13ERROR HY000: Error when executing command SHOW BINLOG EVENTS: Invalid pos specified. Requested from pos:POS is greater than actual file size:MAX_POS
14
15DROP TABLE t1;
16