summaryrefslogtreecommitdiff
path: root/mysql-test/suite/encryption/disabled.def
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-8139 Fix ScrubbingThirunarayanan Balathandayuthapani2020-06-121-14/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fil_space_t::freed_ranges: Store ranges of freed page numbers. fil_space_t::last_freed_lsn: Store the most recent LSN of freeing a page. fil_space_t::freed_mutex: Protects freed_ranges, last_freed_lsn. fil_space_create(): Initialize the freed_range mutex. fil_space_free_low(): Frees the freed_range mutex. range_set: Ranges of page numbers. buf_page_create(): Removes the page from freed_ranges when page is being reused. btr_free_root(): Remove the PAGE_INDEX_ID invalidation. Because btr_free_root() and dict_drop_index_tree() are executed in the same atomic mini-transaction, there is no need to invalidate the root page. buf_release_freed_page(): Split from buf_flush_freed_page(). Skip any I/O buf_flush_freed_pages(): Get the freed ranges from tablespace and Write punch-hole or zeroes of the freed ranges. buf_flush_try_neighbors(): Handles the flushing of freed ranges. mtr_t::freed_pages: Variable to store the list of freed pages. mtr_t::add_freed_pages(): To add freed pages. mtr_t::clear_freed_pages(): To clear the freed pages. mtr_t::m_freed_in_system_tablespace: Variable to indicate whether page has been freed in system tablespace. mtr_t::m_trim_pages: Variable to indicate whether the space has been trimmed. mtr_t::commit(): Add the freed page and update the last freed lsn in the tablespace and clear the tablespace freed range if space is trimmed. file_name_t::freed_pages: Store the freed pages during recovery. file_name_t::add_freed_page(), file_name_t::remove_freed_page(): To add and remove freed page during recovery. store_freed_or_init_rec(): Store or remove the freed pages while encountering FREE_PAGE or INIT_PAGE redo log record. recv_init_crash_recovery_spaces(): Add the freed page encountered during recovery to respective tablespace.
* MDEV-20839: Re-enable the testMarko Mäkelä2020-01-091-1/+0
| | | | The merge commit 68fe5f534ca257f983209ef3cf26d6848c691af8 missed this.
* MDEV-20839 innodb-redo-badkey fails sporadicallyVladislav Vaintroub2019-11-151-0/+1
|
* MDEV-13893/MDEV-12699: Enable encryption.innodb-redo-badkeyMarko Mäkelä2019-09-131-1/+0
| | | | | | | The test had been disabled in 10.2 due to frequent failures, in 5ec9b88e11118c798ff2381771a72f76b2b72f9e. After the problems were addressed, we failed to re-enable the test until now.
* Disable a frequently failing testMarko Mäkelä2018-12-041-0/+1
|
* Merge branch '10.1' into 10.2Sergei Golubchik2018-06-211-2/+0
|\
| * MDEV-14814: encryption.innodb_encryption-page-compression failed in buildbot ↵Jan Lindström2018-02-191-1/+1
| | | | | | | | | | | | with timeout on wait condition Test changes only.
| * Disable failing test.Jan Lindström2018-02-181-1/+1
| |
* | MDEV-14814: encryption.innodb_encryption-page-compression failed in buildbot ↵Jan Lindström2018-02-241-1/+1
| | | | | | | | | | | | with timeout on wait condition Fix wrong wait condition.
* | Merge 10.1 into 10.2Marko Mäkelä2018-02-171-0/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | Disable the test encryption.innodb_encryption-page-compression because the wait_condition would seem to time out deterministically. MDEV-14814 has to be addressed in 10.2 separately. Datafile::validate_first_page(): Do not invoke page_size_t::page_size_t(flags) before validating the tablespace flags. This avoids a crash in MDEV-15333 innodb.restart test case. FIXME: Reduce the number of error messages. The first one is enough.
* | Disable known-failing testsMarko Mäkelä2017-10-311-1/+1
|/ | | | | | | MDEV-13568: Purge is not blocked by LOCK TABLES. Should it? MDEV-13893/MDEV-12699: Crash recovery of corrupted or non-decryptable pages is broken.
* Fixed test failure on innodb_encryptionJan Lindström2017-08-311-1/+1
| | | | | | | | | | After MDEV-13583: Improvements for MTR rebootstrap introduced in MDEV-12042 bootsrap correctly creates mysql/innodb_table_stats and mysql/innodb_index_stats InnoDB tables before innodb_encryption test starts. These tables are also encrypted or decrypted, thus we need to wait also these tables (if not we could randomly get different results as system tablespace and these tables are encrypted or decrypted in parallel).
* Temporarily disable encryption.innodb_encryption after the mergeMarko Mäkelä2017-08-301-0/+1
|
* MDEV-8139: Disable a randomly failing test until the code is fixed.Marko Mäkelä2017-01-151-1/+2
|
* MDEV-8139 Fix scrubbing testsbb-10.1-mdev-8139Marko Mäkelä2017-01-051-5/+1
| | | | | | | | | | | | | | | encryption.innodb_scrub: Clean up. Make it also cover ROW_FORMAT=COMPRESSED, removing the need for encryption.innodb_scrub_compressed. Add a FIXME comment saying that we should create a secondary index, to demonstrate that also undo log pages get scrubbed. Currently that is not working! Also clean up encryption.innodb_scrub_background, but keep it disabled, because the background scrubbing does not work reliably. Fix both tests so that if something is not scrubbed, the test will be aborted, so that the data files will be preserved. Allow the tests to run on Windows as well.
* Fixed failing tests and compiler warningsMonty2015-08-181-0/+2
| | | | - UNINIT_VAR() was required for 4.8.3 on openSUSE 13.2
* temporarily disable failing testSergei Golubchik2015-05-301-0/+1
|
* MDEV-8164: Server crashes in pfs_mutex_enter_func after fil_crypt_is_closing ↵Jan Lindström2015-05-181-0/+14
or alike Analysis: Problem was that tablespaces not encrypted might not have crypt_data stored on disk. Fixed by always creating crypt_data to memory cache of the tablespace. MDEV-8138: strange results from encrypt-and-grep test Analysis: crypt_data->type is not updated correctly on memory cache. This caused problem with state tranfer on encrypted => unencrypted => encrypted. Fixed by updating memory cache of crypt_data->type correctly based on current srv_encrypt_tables value to either CRYPT_SCHEME_1 or CRYPT_SCHEME_UNENCRYPTED.