diff options
Diffstat (limited to 'sql/wsrep_thd.cc')
-rw-r--r-- | sql/wsrep_thd.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/wsrep_thd.cc b/sql/wsrep_thd.cc index 0f72c132d84..21a1c03d33e 100644 --- a/sql/wsrep_thd.cc +++ b/sql/wsrep_thd.cc @@ -454,13 +454,13 @@ void wsrep_restore_threadvars(const Wsrep_threadvars& globals) pthread_setspecific(THR_KEY_mysys, globals.mysys_var); } -int wsrep_store_threadvars(THD *thd) +void wsrep_store_threadvars(THD *thd) { if (thread_handling == SCHEDULER_TYPES_COUNT) { pthread_setspecific(THR_KEY_mysys, thd->mysys_var); } - return thd->store_globals(); + thd->store_globals(); } void wsrep_reset_threadvars(THD *thd) |