|
|
@ -110,6 +110,7 @@ extern struct wsrep_service_st { |
|
|
|
int (*wsrep_trx_is_aborting_func)(MYSQL_THD thd); |
|
|
|
int (*wsrep_trx_order_before_func)(MYSQL_THD, MYSQL_THD); |
|
|
|
void (*wsrep_unlock_rollback_func)(); |
|
|
|
void (*wsrep_set_data_home_dir_func)(const char *data_dir); |
|
|
|
} *wsrep_service; |
|
|
|
|
|
|
|
#ifdef MYSQL_DYNAMIC_PLUGIN |
|
|
@ -151,6 +152,7 @@ extern struct wsrep_service_st { |
|
|
|
#define wsrep_trx_is_aborting(T) wsrep_service->wsrep_trx_is_aborting_func(T) |
|
|
|
#define wsrep_trx_order_before(T1,T2) wsrep_service->wsrep_trx_order_before_func(T1,T2) |
|
|
|
#define wsrep_unlock_rollback() wsrep_service->wsrep_unlock_rollback_func() |
|
|
|
#define wsrep_set_data_home_dir(A) wsrep_service->wsrep_set_data_home_dir_func(A) |
|
|
|
|
|
|
|
#define wsrep_debug get_wsrep_debug() |
|
|
|
#define wsrep_log_conflicts get_wsrep_log_conflicts() |
|
|
@ -208,6 +210,7 @@ void wsrep_thd_awake(THD *thd, my_bool signal); |
|
|
|
void wsrep_thd_set_conflict_state(THD *thd, enum wsrep_conflict_state state); |
|
|
|
bool wsrep_thd_ignore_table(THD *thd); |
|
|
|
void wsrep_unlock_rollback(); |
|
|
|
void wsrep_set_data_home_dir(const char *data_dir); |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|