mirror of
https://github.com/MariaDB/server.git
synced 2025-11-19 19:03:26 +03:00
-Note 1031 Table storage engine for 't1' doesn't have this option +Note 1031 Table storage engine for 'InnoDB' doesn't have this option They were caused by a change in MariaDB which changed ER_ILLEGAL_HA message text to be like: "Storage engine InnoDB of the table `test`.`t1` doesn't have this option" Some the error calls were changed to pass new parameters, but some were left to be old. Also the error text in errmsg-ut8.txt was not changed.
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;
|