mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Protecting non replicated FLUSH session from brute force aborts
This commit is contained in:
committed by
Nirbhay Choubey
parent
045b31c8f4
commit
c66609017b
@@ -861,6 +861,7 @@ 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";
|
||||
|
Reference in New Issue
Block a user