diff options
author | sasha@mysql.sashanet.com <> | 2000-09-14 16:34:50 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2000-09-14 16:34:50 -0600 |
commit | 44455063e5612f63c5b6bb80cc38f43ac4aa7b4c (patch) | |
tree | 6f789a128f7f2f981c423d22a6bebd80ccf71633 /sql/ha_myisam.h | |
parent | 243579e8b2857c6827cf9117c0baa96978e75809 (diff) | |
download | mariadb-git-44455063e5612f63c5b6bb80cc38f43ac4aa7b4c.tar.gz |
BACKUP TABLE TO 'directory'
RESTORE TABLE FROM 'directory'
log on slave when it connects to the master
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index c8f097e792f..00f63a99edd 100644 --- a/sql/ha_myisam.h +++ b/sql/ha_myisam.h @@ -96,6 +96,8 @@ class ha_myisam: public handler int analyze(THD* thd,HA_CHECK_OPT* check_opt); int repair(THD* thd, HA_CHECK_OPT* check_opt); int optimize(THD* thd, HA_CHECK_OPT* check_opt); + int restore(THD* thd, HA_CHECK_OPT* check_opt); + int backup(THD* thd, HA_CHECK_OPT* check_opt); int dump(THD* thd, int fd); int net_read_dump(NET* net); }; |