diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-02-02 10:06:29 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-02-02 10:06:29 +0100 |
commit | fa11d613cfbaee23d48cabfb65435d83adee7818 (patch) | |
tree | bd90c2e71a319c8366d355c79d33a985130330b6 /mysql-test/t/flush-innodb.test | |
parent | d929342b0f8d5a85aac4e76486b0ff2aff7ca54f (diff) | |
download | mariadb-git-fa11d613cfbaee23d48cabfb65435d83adee7818.tar.gz |
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
Diffstat (limited to 'mysql-test/t/flush-innodb.test')
-rw-r--r-- | mysql-test/t/flush-innodb.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/flush-innodb.test b/mysql-test/t/flush-innodb.test index 4494ee94376..7a877b977ce 100644 --- a/mysql-test/t/flush-innodb.test +++ b/mysql-test/t/flush-innodb.test @@ -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; |