We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b16346 commit ae8f0ebCopy full SHA for ae8f0eb
storage/innobase/srv/srv0conc.cc
@@ -516,12 +516,11 @@ srv_conc_enter_innodb_without_atomics(
516
#ifdef WITH_WSREP
517
if (wsrep_on(trx->mysql_thd) &&
518
wsrep_trx_is_aborting(trx->mysql_thd)) {
519
- srv_conc_n_waiting_threads--;
520
os_fast_mutex_unlock(&srv_conc_mutex);
521
if (wsrep_debug)
522
fprintf(stderr, "srv_conc_enter due to MUST_ABORT");
523
trx->declared_to_be_inside_innodb = TRUE;
524
- trx->n_tickets_to_enter_innodb = SRV_FREE_TICKETS_TO_ENTER;
+ trx->n_tickets_to_enter_innodb = srv_n_free_tickets_to_enter;
525
return;
526
}
527
trx->wsrep_event = slot->event;
0 commit comments