diff options
author | Sergei Golubchik <serg@mariadb.org> | 2022-04-05 19:56:33 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2022-05-10 12:19:18 +0200 |
commit | 7b05fc5cdd6058e91a26836ace54f45f37fa88b5 (patch) | |
tree | 3fddefff6452307e17bfcbd1a3e3dbf4cb1b2818 /mysql-test | |
parent | 488e56b50c40f3577dc09ae61f9970d86bcb6c64 (diff) | |
download | mariadb-git-7b05fc5cdd6058e91a26836ace54f45f37fa88b5.tar.gz |
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.
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/suite/mariabackup/compression_providers_unloaded.result | 1 | ||||
-rw-r--r-- | mysql-test/suite/mariabackup/compression_providers_unloaded.test | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/compression_providers_unloaded.result b/mysql-test/suite/mariabackup/compression_providers_unloaded.result index 10c06971ab4..ccf3e0355a4 100644 --- a/mysql-test/suite/mariabackup/compression_providers_unloaded.result +++ b/mysql-test/suite/mariabackup/compression_providers_unloaded.result @@ -1,5 +1,6 @@ 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("Refusing to load corrupted table"); # # Testing mariabackup with bzip2 compression # diff --git a/mysql-test/suite/mariabackup/compression_providers_unloaded.test b/mysql-test/suite/mariabackup/compression_providers_unloaded.test index 715ab4ae8c0..673c16d03cf 100644 --- a/mysql-test/suite/mariabackup/compression_providers_unloaded.test +++ b/mysql-test/suite/mariabackup/compression_providers_unloaded.test @@ -1,6 +1,7 @@ let $alg = $MTR_COMBINATIONS; 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("Refusing to load corrupted table"); if (`select count(*) = 0 from information_schema.plugins where plugin_name = 'provider_$alg' and plugin_status='active'`) { |