diff options
Diffstat (limited to 'mysql-test/innodb-index.test')
-rw-r--r-- | mysql-test/innodb-index.test | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/mysql-test/innodb-index.test b/mysql-test/innodb-index.test index 0ca02f0538a..47f7330a12b 100644 --- a/mysql-test/innodb-index.test +++ b/mysql-test/innodb-index.test @@ -17,16 +17,6 @@ show create table t1; alter table t1 add index (b); show create table t1; -# Check how existing tables interfere with temporary tables. -CREATE TABLE `t1#1`(a INT PRIMARY KEY) ENGINE=InnoDB; - ---error 156 -alter table t1 add unique index (c), add index (d); -rename table `t1#1` to `t1#2`; ---error 156 -alter table t1 add unique index (c), add index (d); -drop table `t1#2`; - alter table t1 add unique index (c), add index (d); show create table t1; explain select * from t1 force index(c) order by c; |