Skip to content

Commit

Permalink
Fix wsrep_thd_is_applier macro to point correct function name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Lindström committed Apr 10, 2019
1 parent 725579c commit 03dcec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/mysql/service_wsrep.h
Expand Up @@ -160,7 +160,7 @@ extern struct wsrep_service_st {
#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_thd_is_applier(T) wsrep_service->wsrep_thd_is_applier(T)
#define wsrep_thd_is_applier(T) wsrep_service->wsrep_thd_is_applier_func(T)

#define wsrep_debug get_wsrep_debug()
#define wsrep_log_conflicts get_wsrep_log_conflicts()
Expand Down

0 comments on commit 03dcec9

Please sign in to comment.