[Commits] 754d613a363: Embedded fix.
revision-id: 754d613a3639e755273db8d8acb4e2fbc8967569 (mariadb-10.1.37-82-g754d613a363) parent(s): 2af362f8bd73ab259cc7458e883db6b0d9ea99cf author: Jan Lindström committer: Jan Lindström timestamp: 2019-02-01 15:23:11 +0200 message: Embedded fix. --- sql/wsrep_thd.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sql/wsrep_thd.h b/sql/wsrep_thd.h index 5900668f3fb..f5fcb50280c 100644 --- a/sql/wsrep_thd.h +++ b/sql/wsrep_thd.h @@ -37,6 +37,7 @@ int wsrep_abort_thd(void *bf_thd_ptr, void *victim_thd_ptr, */ extern void wsrep_thd_set_PA_safe(void *thd_ptr, my_bool safe); extern my_bool wsrep_thd_is_BF(THD *thd, my_bool sync); +extern my_bool wsrep_thd_is_applier(THD *thd); extern my_bool wsrep_thd_is_wsrep(void *thd_ptr); enum wsrep_conflict_state wsrep_thd_conflict_state(void *thd_ptr, my_bool sync); @@ -47,6 +48,7 @@ extern "C" int wsrep_thd_in_locking_session(void *thd_ptr); #else /* WITH_WSREP */ #define wsrep_thd_is_BF(T, S) (0) +#define wsrep_thd_is_applier(T) (0) #define wsrep_abort_thd(X,Y,Z) do { } while(0) #define wsrep_create_appliers(T) do { } while(0)
participants (1)
-
jan