summaryrefslogtreecommitdiff
path: root/sql/repl_failsafe.h
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2001-11-10 22:24:12 -0700
committersasha@mysql.sashanet.com <>2001-11-10 22:24:12 -0700
commitbeaf95b09dd642c72949ae3c4c87398d00e4df5f (patch)
tree9303005b745dbcfba11b4ee43cd2971c956dc974 /sql/repl_failsafe.h
parent79806fadff7849d0bc657386f3fefb807dbfcef5 (diff)
downloadmariadb-git-beaf95b09dd642c72949ae3c4c87398d00e4df5f.tar.gz
work to enable reading 3.23 logs - not yet finished
moved fail-safe replication routines from sql_repl.cc to repl_failsafe.cc write start event only in the first log
Diffstat (limited to 'sql/repl_failsafe.h')
-rw-r--r--sql/repl_failsafe.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/repl_failsafe.h b/sql/repl_failsafe.h
index b71dde1dc10..77bc03ce8c0 100644
--- a/sql/repl_failsafe.h
+++ b/sql/repl_failsafe.h
@@ -2,6 +2,8 @@
#define REPL_FAILSAFE_H
#include "mysql.h"
+#include "my_sys.h"
+#include "slave.h"
typedef enum {RPL_AUTH_MASTER=0,RPL_ACTIVE_SLAVE,RPL_IDLE_SLAVE,
RPL_LOST_SOLDIER,RPL_TROOP_SOLDIER,
@@ -19,4 +21,18 @@ pthread_handler_decl(handle_failsafe_rpl,arg);
void change_rpl_status(RPL_STATUS from_status, RPL_STATUS to_status);
int find_recovery_captain(THD* thd, MYSQL* mysql);
int update_slave_list(MYSQL* mysql);
+
+extern HASH slave_list;
+
+int load_master_data(THD* thd);
+int connect_to_master(THD *thd, MYSQL* mysql, MASTER_INFO* mi);
+
+int show_new_master(THD* thd);
+int show_slave_hosts(THD* thd);
+int translate_master(THD* thd, LEX_MASTER_INFO* mi, char* errmsg);
+void init_slave_list();
+void end_slave_list();
+int register_slave(THD* thd, uchar* packet, uint packet_length);
+void unregister_slave(THD* thd, bool only_mine, bool need_mutex);
+
#endif