mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 15:45:33 +02:00
fixes for mysql-test to run without manager
a bit more work on failsafe replication
This commit is contained in:
parent
24b9e87974
commit
d10b81bf51
8 changed files with 84 additions and 9 deletions
|
|
@ -3,11 +3,14 @@
|
|||
|
||||
typedef enum {RPL_AUTH_MASTER=0,RPL_ACTIVE_SLAVE,RPL_IDLE_SLAVE,
|
||||
RPL_LOST_SOLDIER,RPL_TROOP_SOLDIER,
|
||||
RPL_RECOVERY_CAPTAIN,RPL_NULL} RPL_STATUS;
|
||||
RPL_RECOVERY_CAPTAIN,RPL_NULL /* inactive */,
|
||||
RPL_ANY /* wild card used by change_rpl_status */ } RPL_STATUS;
|
||||
extern RPL_STATUS rpl_status;
|
||||
|
||||
extern pthread_mutex_t LOCK_rpl_status;
|
||||
extern pthread_cond_t COND_rpl_status;
|
||||
extern TYPELIB rpl_role_typelib, rpl_status_typelib;
|
||||
extern const char* rpl_role_type[], *rpl_status_type[];
|
||||
|
||||
void change_rpl_status(RPL_STATUS from_status, RPL_STATUS to_status);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue