summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/unencrypted_page_compressed.test
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-18663 Tests : use --core-file if mariabackup output is redirected to a fileVladislav Vaintroub2019-02-201-1/+1
| | | | This is done in order to help debugging buildbot failures.
* Merge branch '10.2' into 10.3Sergei Golubchik2019-01-031-0/+1
|
* Merge 10.1 into 10.2Marko Mäkelä2018-12-211-1/+1
|\
* | Merge 10.1 into 10.2Marko Mäkelä2018-12-181-0/+3
|/
* MDEV-18025 Mariabackup fails to detect corrupted page_compressed=1 tablesThirunarayanan Balathandayuthapani2018-12-181-0/+46
Problem: ======= Mariabackup seems to fail to verify the pages of compressed tables. The reason is that both fil_space_verify_crypt_checksum() and buf_page_is_corrupted() will skip the validation for compressed pages. Fix: ==== Mariabackup should call fil_page_decompress() for compressed and encrypted compressed page. After that, call buf_page_is_corrupted() to check the page corruption.