|
|
|
@ -26,7 +26,7 @@ typedef enum {RPL_AUTH_MASTER=0,RPL_IDLE_SLAVE,RPL_ACTIVE_SLAVE, |
|
|
|
RPL_LOST_SOLDIER,RPL_TROOP_SOLDIER, |
|
|
|
RPL_RECOVERY_CAPTAIN,RPL_NULL /* inactive */, |
|
|
|
RPL_ANY /* wild card used by change_rpl_status */ } RPL_STATUS; |
|
|
|
extern RPL_STATUS rpl_status; |
|
|
|
extern ulong rpl_status; |
|
|
|
|
|
|
|
extern mysql_mutex_t LOCK_rpl_status; |
|
|
|
extern mysql_cond_t COND_rpl_status; |
|
|
|
@ -34,7 +34,7 @@ extern TYPELIB rpl_role_typelib; |
|
|
|
extern const char* rpl_role_type[], *rpl_status_type[]; |
|
|
|
|
|
|
|
pthread_handler_t handle_failsafe_rpl(void *arg); |
|
|
|
void change_rpl_status(RPL_STATUS from_status, RPL_STATUS to_status); |
|
|
|
void change_rpl_status(ulong from_status, ulong to_status); |
|
|
|
int find_recovery_captain(THD* thd, MYSQL* mysql); |
|
|
|
int update_slave_list(MYSQL* mysql, Master_info* mi); |
|
|
|
|
|
|
|
|