mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
3ad01d00f2
instead of "used storage engine" and similar changes.
6 lines
227 B
Text
6 lines
227 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 Storage engine InnoDB of the table `test`.`t1` doesn't have this option
|
|
DROP TABLE t2;
|