diff options
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. */ |