diff options
author | Sergei Golubchik <serg@mariadb.org> | 2014-10-08 18:47:16 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2014-10-10 22:27:36 +0200 |
commit | 03ec3511a82e90310c850ea71b395b214cab1645 (patch) | |
tree | 65e6b3dea94e4744b5b9a3bfb0f847977ed7d55a /sql/wsrep_thd.h | |
parent | 8596b70f96fc543c2e1cac4bc8cbe58dcc4004e5 (diff) | |
download | mariadb-git-03ec3511a82e90310c850ea71b395b214cab1645.tar.gz |
cleanup: galera misc cleanups
also disable galera-specific output in mysql_tzinfo_to_sql,
it'll be enabled later.
Diffstat (limited to 'sql/wsrep_thd.h')
-rw-r--r-- | sql/wsrep_thd.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sql/wsrep_thd.h b/sql/wsrep_thd.h index 9914e98dcdb..0d01d28f01b 100644 --- a/sql/wsrep_thd.h +++ b/sql/wsrep_thd.h @@ -31,6 +31,9 @@ void wsrep_create_rollbacker(); int wsrep_abort_thd(void *bf_thd_ptr, void *victim_thd_ptr, my_bool signal); +/* + PA = Parallel Applying (on the slave side) +*/ 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_wsrep(void *thd_ptr); @@ -44,7 +47,7 @@ extern "C" int wsrep_thd_in_locking_session(void *thd_ptr); #define wsrep_thd_is_BF(T, S) (0) #define wsrep_abort_thd(X,Y,Z) do { } while(0) -#define wsrep_create_appliers(T) (0) +#define wsrep_create_appliers(T) do { } while(0) #endif #endif /* WSREP_THD_H */ |