diff options
author | sjaakola <seppo.jaakola@iki.fi> | 2015-04-28 20:38:25 +0300 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2015-09-09 21:31:16 -0400 |
commit | 63c5bee535f0827721484c93a2ba8798437fadf5 (patch) | |
tree | 7a1ba13a833c784532372e2adcfc8c95530fe132 /sql/sql_class.cc | |
parent | 417f778e53f6d3c111ef25976d7f1b2d532ca2a3 (diff) | |
download | mariadb-git-63c5bee535f0827721484c93a2ba8798437fadf5.tar.gz |
Refs codership/mysql-wsrep#113 - Extended the protection of local FLUSH
sessions to cover all exclusive MDL locks
Diffstat (limited to 'sql/sql_class.cc')
-rw-r--r-- | sql/sql_class.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/sql_class.cc b/sql/sql_class.cc index af03a3b10b3..4ce99da7c7d 100644 --- a/sql/sql_class.cc +++ b/sql/sql_class.cc @@ -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"; |