Commit 3a906ca9 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-12708 innodb.truncate_purge_debug fails sporadically in buildbot

The latest attempted fix for
MDEV-11802 InnoDB purge fails to start when there is work to do
is not complete.

For now, work around the issue by making SHOW ENGINE INNODB STATUS
call srv_wake_purge_thread_if_not_active() to wake up the purge.
parent e3a7f75a
......@@ -16698,6 +16698,8 @@ innodb_show_status(
DBUG_RETURN(0);
}
srv_wake_purge_thread_if_not_active();
trx_t* trx = check_trx_exists(thd);
trx_assert_no_search_latch(trx);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment