Commit 859d100d authored by Jan Lindström's avatar Jan Lindström

MDEV-15063: InnoDB assertion failure !is_owned() at dict0defrag_bg.cc:327

Probem was that dict_sys mutex was owned when calling function
dict_stats_save_defrag_stats() that assumes we do not own
dict_sys mutex.
parent 7fc25cfb
......@@ -240,6 +240,7 @@ dict_stats_process_entry_from_defrag_pool()
return;
}
mutex_exit(&dict_sys->mutex);
dict_stats_save_defrag_stats(index);
dict_table_close(table, FALSE, FALSE);
}
......
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