mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
BACKUP TABLE TO 'directory'
RESTORE TABLE FROM 'directory' log on slave when it connects to the master
This commit is contained in:
@ -33,6 +33,7 @@
|
||||
#define HA_ADMIN_FAILED -2
|
||||
#define HA_ADMIN_CORRUPT -3
|
||||
#define HA_ADMIN_INTERNAL_ERROR -4
|
||||
#define HA_ADMIN_INVALID -5
|
||||
|
||||
/* Bits in bas_flag to show what database can do */
|
||||
|
||||
@ -248,6 +249,8 @@ public:
|
||||
virtual int repair(THD* thd, HA_CHECK_OPT* check_opt);
|
||||
virtual int optimize(THD* thd,HA_CHECK_OPT* check_opt);
|
||||
virtual int analyze(THD* thd, HA_CHECK_OPT* check_opt);
|
||||
virtual int backup(THD* thd, HA_CHECK_OPT* check_opt);
|
||||
virtual int restore(THD* thd, HA_CHECK_OPT* check_opt);
|
||||
virtual int dump(THD* thd, int fd = -1) { return ER_DUMP_NOT_IMPLEMENTED; }
|
||||
virtual void deactivate_non_unique_index(ha_rows rows) {}
|
||||
virtual bool activate_all_index(THD *thd) {return 0;}
|
||||
|
Reference in New Issue
Block a user