mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
Removed the global suppression, added lots of local ones to affected tests Re-commit, now kept "Slave SQL" at start of patterns.
18 lines
655 B
Plaintext
18 lines
655 B
Plaintext
include/master-slave.inc
|
|
[connection master]
|
|
create table t1(a int not null auto_increment, b int, primary key(a)) engine=innodb;
|
|
start transaction;
|
|
insert into t1(b) values (1);
|
|
insert into t1(b) values (2);
|
|
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
|
|
commit;
|
|
include/wait_for_slave_sql_error.inc [errno=9]
|
|
drop table t1;
|
|
include/sync_slave_io_with_master.inc
|
|
include/stop_slave_io.inc
|
|
RESET SLAVE;
|
|
drop table t1;
|
|
call mtr.add_suppression("Slave: Error writing file 'UNKNOWN' .Errcode: 9. Error_code: 3");
|
|
call mtr.add_suppression("Slave SQL.*Error in Begin_load_query event: write to.* failed, Error_code: 9");
|
|
include/rpl_end.inc
|