summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_slave_load_remove_tmpfile.result
blob: c3c4f7c015aa0b03fa56e1983bbffc9a80e32455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
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;
drop table t1;
drop table t1;
call mtr.add_suppression("Slave: Error writing file 'UNKNOWN' .Errcode: 9. Error_code: 3");