Commit b8a496b7 authored by mskold@mysql.com's avatar mskold@mysql.com

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 fb328631
...@@ -45,8 +45,6 @@ a b c ...@@ -45,8 +45,6 @@ a b c
8 2 3 8 2 3
alter table t1 drop index ib; alter table t1 drop index ib;
insert into t1 values(1, 2, 3); 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; drop table t1;
CREATE TABLE t1 ( CREATE TABLE t1 (
a int unsigned NOT NULL PRIMARY KEY, a int unsigned NOT NULL PRIMARY KEY,
......
...@@ -30,10 +30,10 @@ insert into t1 values(8, 2, 3); ...@@ -30,10 +30,10 @@ insert into t1 values(8, 2, 3);
select * from t1 order by a; select * from t1 order by a;
alter table t1 drop index ib; alter table t1 drop index ib;
sleep 10;
insert into t1 values(1, 2, 3); insert into t1 values(1, 2, 3);
--error 1169 # Bug# #18129
create unique index ib on t1(b); #--error 1169
#create unique index ib on t1(b);
drop table t1; drop table t1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment