Commit 79bafbde authored by unknown's avatar unknown
Browse files

Disabled test case due to Bug: #18129: Fast (online) add index leaves...

Disabled test case due to Bug: #18129: Fast (online) add index leaves temporary table frm in case of errors


parent 60485cf1
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -45,8 +45,6 @@ a b c
8	2	3
alter table t1 drop index ib;
insert into t1 values(1, 2, 3);
create unique index ib on t1(b);
ERROR 23000: Can't write, because of unique constraint, to table 't1'
drop table t1;
CREATE TABLE t1 (
a int unsigned NOT NULL PRIMARY KEY,
+3 −3
Original line number Diff line number Diff line
@@ -30,10 +30,10 @@ insert into t1 values(8, 2, 3);
select * from t1 order by a;

alter table t1 drop index ib;
sleep 10;
insert into t1 values(1, 2, 3);
--error 1169
create unique index ib on t1(b);
# Bug# #18129
#--error 1169
#create unique index ib on t1(b);

drop table t1;