mirror of
https://github.com/MariaDB/server.git
synced 2025-08-30 11:22:14 +03:00
post-push fixes for show_slave_io_error= 1 of wait_for_slave_io_error.inc; Unix and win format path specifically so few tests have to change show_slave_io_error to zero.
23 lines
514 B
Plaintext
23 lines
514 B
Plaintext
include/master-slave.inc
|
|
[connection master]
|
|
FLUSH LOGS;
|
|
CREATE TABLE t1(c1 INT);
|
|
FLUSH LOGS;
|
|
call mtr.add_suppression('Got fatal error 1236 from master when reading data from binary log: .*could not find next log');
|
|
include/wait_for_slave_io_error.inc [errno=1236]
|
|
CREATE TABLE t2(c1 INT);
|
|
FLUSH LOGS;
|
|
CREATE TABLE t3(c1 INT);
|
|
FLUSH LOGS;
|
|
CREATE TABLE t4(c1 INT);
|
|
START SLAVE IO_THREAD;
|
|
include/wait_for_slave_io_to_start.inc
|
|
SHOW TABLES;
|
|
Tables_in_test
|
|
t1
|
|
t2
|
|
t3
|
|
t4
|
|
DROP TABLE t1, t2, t3, t4;
|
|
include/rpl_end.inc
|