summaryrefslogtreecommitdiff
path: root/mysql-test/suite/maria/bulk_insert_crash.result
blob: 0cf5a47493952c19be0a67c7e03bdfb01948fa2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
create table t1 (a int primary key, b int, c int, unique key(b), key(c)) engine=aria transactional=1;
insert into t1 values (1000,1000,1000);
insert into t1 select seq,seq+100, seq+200 from seq_1_to_10;
SET GLOBAL debug_dbug="+d,crash_end_bulk_insert";
REPLACE into t1 select seq+20,seq+95, seq + 300 from seq_1_to_10;
ERROR HY000: Lost connection to server during query
check table t1;
Table	Op	Msg_type	Msg_text
test.t1	check	status	OK
select sum(a),sum(b),sum(c) from t1;
sum(a)	sum(b)	sum(c)
1055	2055	3055
drop table t1;