summaryrefslogtreecommitdiff
path: root/mysql-test/suite/engines/funcs/r/ix_drop.result
blob: c003f7e877dff1c691a2c5aaa96111f7695c3d1a (plain)
1
2
3
4
5
6
7
DROP TABLE IF EXISTS t8;
CREATE TABLE t8(c1 INTEGER NOT NULL);
CREATE INDEX i1 ON t8(c1);
DROP INDEX i1 ON t8;
DROP TABLE t8;
SHOW TABLES;
Tables_in_test