Skip to content

Commit

Permalink
diffed in the fix from revision #3937 from lp:codership-mysql/5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Seppo Jaakola committed Nov 26, 2013
1 parent 9b16346 commit ae8f0eb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions storage/innobase/srv/srv0conc.cc
Expand Up @@ -516,12 +516,11 @@ srv_conc_enter_innodb_without_atomics(
#ifdef WITH_WSREP
if (wsrep_on(trx->mysql_thd) &&
wsrep_trx_is_aborting(trx->mysql_thd)) {
srv_conc_n_waiting_threads--;
os_fast_mutex_unlock(&srv_conc_mutex);
if (wsrep_debug)
fprintf(stderr, "srv_conc_enter due to MUST_ABORT");
trx->declared_to_be_inside_innodb = TRUE;
trx->n_tickets_to_enter_innodb = SRV_FREE_TICKETS_TO_ENTER;
trx->n_tickets_to_enter_innodb = srv_n_free_tickets_to_enter;
return;
}
trx->wsrep_event = slot->event;
Expand Down

0 comments on commit ae8f0eb

Please sign in to comment.