Commit 2505aea7 authored by marko's avatar marko

branches/zip: innodb-index.test: Drop all created tables at the end.

parent 4e44c733
...@@ -964,3 +964,4 @@ t1 CREATE TABLE `t1` ( ...@@ -964,3 +964,4 @@ t1 CREATE TABLE `t1` (
KEY `t1t` (`t`(1)), KEY `t1t` (`t`(1)),
KEY `t1st` (`s`(1),`t`(1)) KEY `t1st` (`s`(1),`t`(1))
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ) ENGINE=InnoDB DEFAULT CHARSET=latin1
drop table t1;
...@@ -355,3 +355,4 @@ create index t1u on t1 (u(1)); ...@@ -355,3 +355,4 @@ create index t1u on t1 (u(1));
create index t1ut on t1 (u(1), t(1)); create index t1ut on t1 (u(1), t(1));
create index t1st on t1 (s(1), t(1)); create index t1st on t1 (s(1), t(1));
show create table t1; show create 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