mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
include/master-slave.inc
|
|
[connection master]
|
|
connection slave;
|
|
include/stop_slave.inc
|
|
connection master;
|
|
call mtr.add_suppression("Error in Log_event::read_log_event()");
|
|
include/rpl_stop_server.inc [server_number=1]
|
|
include/rpl_start_server.inc [server_number=1]
|
|
show binlog events;
|
|
ERROR HY000: Error when executing command SHOW BINLOG EVENTS: Wrong offset or I/O error
|
|
connection slave;
|
|
call mtr.add_suppression("Slave I/O: Got fatal error 1236 from master when reading data from binary log");
|
|
reset slave;
|
|
start slave;
|
|
include/wait_for_slave_param.inc [Last_IO_Errno]
|
|
Last_IO_Errno = '1236'
|
|
Last_IO_Error = 'Got fatal error 1236 from master when reading data from binary log: 'binlog truncated in the middle of event; consider out of disk space on master; the first event '.' at XXX, the last event read from 'master-bin.000001' at XXX, the last byte read from 'master-bin.000001' at XXX.''
|
|
connection master;
|
|
reset master;
|
|
connection slave;
|
|
stop slave;
|
|
reset slave;
|
|
drop table if exists t;
|
|
reset master;
|
|
End of the tests
|
|
include/rpl_end.inc
|