Comment 9 for bug 1664219

Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

binlog.binlog_row_mix_tmp_table 'mix' w1 [ fail ]
        Test ended at 2017-02-11 13:02:43

CURRENT_TEST: binlog.binlog_row_mix_tmp_table
mysqltest: In included file "./extra/binlog_tests/tmp_table.test":
included from ./extra/binlog_tests/tmp_table.test at line 88:
At line 88: command "copy_file" failed with error 1. my_errno=17

The result from queries just before the failure was:
RESET MASTER;
create table foo (a int);
flush logs;
create temporary table tmp1_foo like foo;
create temporary table tmp2_foo (a int);
insert into tmp1_foo values (1), (2), (3), (4);
replace into tmp2_foo values (1), (2), (3), (4);
update tmp1_foo set a=2*a-1;
update tmp2_foo set a=2*a;
delete from tmp1_foo where a < 5;
delete from tmp2_foo where a < 5;
insert into foo select * from tmp1_foo;
insert into foo select * from tmp2_foo;
truncate table tmp1_foo;
truncate table tmp2_foo;
flush logs;
select * from foo;
a
5
7
6
8
drop table foo;
create table foo (a int);
safe_process[19373]: Child process: 19374, exit: 1