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 18f160d commit 2cdcde9Copy full SHA for 2cdcde9
storage/xtradb/handler/ha_innodb.cc
@@ -18529,6 +18529,15 @@ wsrep_innobase_kill_one_trx(
18529
(thd && wsrep_thd_query(thd)) ? wsrep_thd_query(thd) : "void");
18530
18531
wsrep_thd_LOCK(thd);
18532
+ DBUG_EXECUTE_IF("sync.wsrep_after_BF_victim_lock",
18533
+ {
18534
+ const char act[]=
18535
+ "now "
18536
+ "wait_for signal.wsrep_after_BF_victim_lock";
18537
+ DBUG_ASSERT(!debug_sync_set_action(bf_thd,
18538
+ STRING_WITH_LEN(act)));
18539
+ };);
18540
+
18541
18542
if (wsrep_thd_query_state(thd) == QUERY_EXITING) {
18543
WSREP_DEBUG("kill trx EXITING for %lu", victim_trx->id);
0 commit comments