# # Bug#18129 - Fast (online) add index leaves temporary table frm in case of errors # system echo && ls -la var/master-data/test ||:; # create table t1 ( c1 int not null primary key, c2 int not null, c3 int) engine = ndbcluster; show warnings; # insert t1 values(1, 2, 3), (2, 2, 4); --error 1169 create unique index i2 on t1(c2); # drop table t1; # system echo && ls -la var/master-data/test ||:;