Commit 7b05fc5c authored by Sergei Golubchik's avatar Sergei Golubchik

sporadic mariabackup.compression_providers_unloaded failure

depending on the scheduling, a purge thread might try to open a
compressed table too. And fail, as a compression plugin is unloaded.
parent 488e56b5
call mtr.add_suppression("Background Page read failed to read, uncompress, or decrypt"); call mtr.add_suppression("Background Page read failed to read, uncompress, or decrypt");
call mtr.add_suppression("Table is compressed or encrypted but uncompress or decrypt failed"); call mtr.add_suppression("Table is compressed or encrypted but uncompress or decrypt failed");
call mtr.add_suppression("Refusing to load corrupted table");
# #
# Testing mariabackup with bzip2 compression # Testing mariabackup with bzip2 compression
# #
......
let $alg = $MTR_COMBINATIONS; let $alg = $MTR_COMBINATIONS;
call mtr.add_suppression("Background Page read failed to read, uncompress, or decrypt"); call mtr.add_suppression("Background Page read failed to read, uncompress, or decrypt");
call mtr.add_suppression("Table is compressed or encrypted but uncompress or decrypt failed"); call mtr.add_suppression("Table is compressed or encrypted but uncompress or decrypt failed");
call mtr.add_suppression("Refusing to load corrupted table");
if (`select count(*) = 0 from information_schema.plugins where plugin_name = 'provider_$alg' and plugin_status='active'`) if (`select count(*) = 0 from information_schema.plugins where plugin_name = 'provider_$alg' and plugin_status='active'`)
{ {
......
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