diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-02-02 10:00:36 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-02-02 10:00:36 +0100 |
commit | d929342b0f8d5a85aac4e76486b0ff2aff7ca54f (patch) | |
tree | e14f3a61137bf5d0adc190262c26fa62d2c02ec0 /sql/handler.h | |
parent | 65121806da41ba0354c53b0b8ea22445c71ea33b (diff) | |
download | mariadb-git-d929342b0f8d5a85aac4e76486b0ff2aff7ca54f.tar.gz |
Merge the server part of MySQL WL#5522 - InnoDB transportable tablespaces.
Syntax. Server support. Test cases.
InnoDB bugfixes:
* don't mess around with system sprintf's, always use my_error() for errors.
* don't use InnoDB internal error codes where OS error codes are expected.
* don't say "file not found", when it was.
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index 69b9c3e071e..c0746b37fbc 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -248,6 +248,13 @@ enum enum_alter_inplace_result { #define HA_CAN_FULLTEXT_EXT (1LL << 44) /* + Storage engine supports table export using the + FLUSH TABLE <table_list> FOR EXPORT statement. + */ +#define HA_CAN_EXPORT (1LL << 45) + + +/* Set of all binlog flags. Currently only contain the capabilities flags. */ |