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 /storage/archive | |
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 'storage/archive')
-rw-r--r-- | storage/archive/ha_archive.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/archive/ha_archive.h b/storage/archive/ha_archive.h index 47ee89198e6..56ff566db8c 100644 --- a/storage/archive/ha_archive.h +++ b/storage/archive/ha_archive.h @@ -107,7 +107,7 @@ public: { return (HA_NO_TRANSACTIONS | HA_REC_NOT_IN_SEQ | HA_CAN_BIT_FIELD | HA_BINLOG_ROW_CAPABLE | HA_BINLOG_STMT_CAPABLE | - HA_STATS_RECORDS_IS_EXACT | + HA_STATS_RECORDS_IS_EXACT | HA_CAN_EXPORT | HA_HAS_RECORDS | HA_CAN_REPAIR | HA_FILE_BASED | HA_CAN_INSERT_DELAYED | HA_CAN_GEOMETRY); } |