diff options
author | Luis Soares <luis.soares@sun.com> | 2009-11-13 10:17:53 +0000 |
---|---|---|
committer | Luis Soares <luis.soares@sun.com> | 2009-11-13 10:17:53 +0000 |
commit | d8ca6b9dd9111db8f303d872f279f374af68e80b (patch) | |
tree | 5107afeb0f71e17a7fcdff3685ea606313d1aa3c /sql/handler.h | |
parent | 0d46e5880e0bb00183b93dedfb8fb007f46dc36e (diff) | |
parent | 7cf9ee96ae496654ac912080f9b7a64f2950e938 (diff) | |
download | mariadb-git-d8ca6b9dd9111db8f303d872f279f374af68e80b.tar.gz |
manual merge: mysql-5.1-rep+2 (bug tree) --> mysql-5.1-rep+2 (latest)
CONFLICTS
=========
Text conflict in sql/sql_yacc.yy
1 conflicts encountered.
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sql/handler.h b/sql/handler.h index 632c262b59a..577b239fba1 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -1255,8 +1255,6 @@ public: uint *dup_key_found); int ha_delete_all_rows(); int ha_reset_auto_increment(ulonglong value); - int ha_backup(THD* thd, HA_CHECK_OPT* check_opt); - int ha_restore(THD* thd, HA_CHECK_OPT* check_opt); int ha_optimize(THD* thd, HA_CHECK_OPT* check_opt); int ha_analyze(THD* thd, HA_CHECK_OPT* check_opt); bool ha_check_and_repair(THD *thd); @@ -1542,9 +1540,7 @@ public: { return HA_ADMIN_NOT_IMPLEMENTED; } /* end of the list of admin commands */ - virtual int dump(THD* thd, int fd = -1) { return HA_ERR_WRONG_COMMAND; } virtual int indexes_are_disabled(void) {return 0;} - virtual int net_read_dump(NET* net) { return HA_ERR_WRONG_COMMAND; } virtual char *update_table_comment(const char * comment) { return (char*) comment;} virtual void append_create_info(String *packet) {} @@ -1912,14 +1908,6 @@ private: */ virtual int reset_auto_increment(ulonglong value) { return HA_ERR_WRONG_COMMAND; } - virtual int backup(THD* thd, HA_CHECK_OPT* check_opt) - { return HA_ADMIN_NOT_IMPLEMENTED; } - /** - Restore assumes .frm file must exist, and that generate_table() has been - called; It will just copy the data file and run repair. - */ - virtual int restore(THD* thd, HA_CHECK_OPT* check_opt) - { return HA_ADMIN_NOT_IMPLEMENTED; } virtual int optimize(THD* thd, HA_CHECK_OPT* check_opt) { return HA_ADMIN_NOT_IMPLEMENTED; } virtual int analyze(THD* thd, HA_CHECK_OPT* check_opt) |