MySQL WL#5522 - InnoDB transportable tablespaces.

Cleanups:
* remove unused HA_EXTRA_EXPORT (can be added later if needed, e.g. for Aria)
* clarify the meaning of HA_CAN_EXPORT
* make all engines that support EXPORT to announce it
* reduce code duplication
This commit is contained in:
Sergei Golubchik 2014-02-02 10:06:29 +01:00
commit fa11d613cf
12 changed files with 72 additions and 151 deletions

View file

@ -267,7 +267,7 @@ DROP TABLE t1;
--echo # Test 6: Unsupported storage engines.
--echo #
CREATE TABLE t1(a INT) engine= MyISAM;
CREATE TABLE t1(a INT) engine= MEMORY;
--error ER_ILLEGAL_HA
FLUSH TABLE t1 FOR EXPORT;
DROP TABLE t1;