summaryrefslogtreecommitdiff
path: root/sql/sql_class.h
diff options
context:
space:
mode:
authorDaniele Sciascia <daniele.sciascia@galeracluster.com>2020-10-30 13:45:27 +0100
committerJan Lindström <jan.lindstrom@mariadb.com>2020-11-03 19:47:17 +0200
commit1f1fa07cd5de1026205b797f205b913eb13e6862 (patch)
treed246695b4f4002fe9fc3819f75ce4c75176324c8 /sql/sql_class.h
parent4d6c6611443f1e0e1cdab34ac6e320031e7f980b (diff)
downloadmariadb-git-1f1fa07cd5de1026205b797f205b913eb13e6862.tar.gz
MDEV-24063 Assertion during graceful shutdown with wsrep_on=OFF
During graceful shutdowns, client connections are closed and eventually and THD::awake() acquires LOCK_thd_data mutex which is required later on in wsrep_thd_is_aborting(). Make sure LOCK_thd_data is acquired, even if global wsrep_on is disabled. Reviewed-by: Jan Lindström <jan.lindstrom@mariadb.com>
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r--sql/sql_class.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h
index 8c479db8936..41b69742834 100644
--- a/sql/sql_class.h
+++ b/sql/sql_class.h
@@ -3308,7 +3308,7 @@ public:
void awake_no_mutex(killed_state state_to_set);
void awake(killed_state state_to_set)
{
- bool wsrep_on_local= WSREP_NNULL(this);
+ bool wsrep_on_local= variables.wsrep_on;
/*
mutex locking order (LOCK_thd_data - LOCK_thd_kill)) requires
to grab LOCK_thd_data here