1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Refs codership/mysql-wsrep#113 - Extended the protection of local FLUSH

sessions to cover all exclusive MDL locks
This commit is contained in:
sjaakola
2015-04-28 20:38:25 +03:00
committed by Nirbhay Choubey
parent 417f778e53
commit 63c5bee535
8 changed files with 26 additions and 23 deletions

View File

@@ -861,7 +861,6 @@ extern "C" const char *wsrep_thd_exec_mode_str(THD *thd)
return
(!thd) ? "void" :
(thd->wsrep_exec_mode == LOCAL_STATE) ? "local" :
(thd->wsrep_exec_mode == LOCAL_FLUSH) ? "flush" :
(thd->wsrep_exec_mode == REPL_RECV) ? "applier" :
(thd->wsrep_exec_mode == TOTAL_ORDER) ? "total order" :
(thd->wsrep_exec_mode == LOCAL_COMMIT) ? "local commit" : "void";