diff options
author | serg@serg.mylan <> | 2005-01-16 13:16:23 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2005-01-16 13:16:23 +0100 |
commit | 1034677f94f26ef8660d0ee41b774ac74084b82f (patch) | |
tree | 58ca68b7179b2df96e7b2f14a1da686cc9d2b959 /sql/sql_repl.h | |
parent | 184cbf6d37b3a57468206f68b493de48f8cfb64a (diff) | |
download | mariadb-git-1034677f94f26ef8660d0ee41b774ac74084b82f.tar.gz |
XA (not completely polished out yet)
Diffstat (limited to 'sql/sql_repl.h')
-rw-r--r-- | sql/sql_repl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sql/sql_repl.h b/sql/sql_repl.h index 71b25548da4..e336148379b 100644 --- a/sql/sql_repl.h +++ b/sql/sql_repl.h @@ -38,13 +38,10 @@ extern my_bool opt_sporadic_binlog_dump_fail; #define KICK_SLAVE(thd) { pthread_mutex_lock(&(thd)->LOCK_delete); (thd)->awake(THD::NOT_KILLED); pthread_mutex_unlock(&(thd)->LOCK_delete); } -File open_binlog(IO_CACHE *log, const char *log_file_name, - const char **errmsg); - int start_slave(THD* thd, MASTER_INFO* mi, bool net_report); int stop_slave(THD* thd, MASTER_INFO* mi, bool net_report); bool change_master(THD* thd, MASTER_INFO* mi); -bool show_binlog_events(THD* thd); +bool mysql_show_binlog_events(THD* thd); int cmp_master_pos(const char* log_file_name1, ulonglong log_pos1, const char* log_file_name2, ulonglong log_pos2); int reset_slave(THD *thd, MASTER_INFO* mi); |