mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
7 lines
210 B
Text
7 lines
210 B
Text
|
drop table if exists t1,t2;
|
||
|
CREATE TABLE t1 (a INT, INDEX(a)) engine=innodb;
|
||
|
ALTER TABLE t1 RENAME TO t2, DISABLE KEYS;
|
||
|
Warnings:
|
||
|
Note 1031 Table storage engine for 't1' doesn't have this option
|
||
|
DROP TABLE t2;
|