1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00
Files
mariadb/mysql-test/suite/engines/funcs/r/ix_drop_error.result
Sergei Golubchik 5c764a0eb8 clarify ER_CANT_DROP_FIELD_OR_KEY
include the dropped object type
2016-07-02 14:52:20 +02:00

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