mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
8 lines
184 B
Plaintext
8 lines
184 B
Plaintext
DROP TABLE IF EXISTS t9;
|
|
CREATE TABLE t9(c1 INTEGER NOT NULL);
|
|
DROP INDEX i1 ON t9;
|
|
ERROR 42000: Can't DROP INDEX `i1`; check that it exists
|
|
DROP TABLE t9;
|
|
SHOW TABLES;
|
|
Tables_in_test
|