mirror of
https://github.com/MariaDB/server.git
synced 2025-05-11 13:21:44 +03:00
7 lines
227 B
Plaintext
7 lines
227 B
Plaintext
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 Storage engine InnoDB of the table `test`.`t1` doesn't have this option
|
|
DROP TABLE t2;
|