summaryrefslogtreecommitdiff
path: root/mysql-test/unstable-tests
Commit message (Collapse)AuthorAgeFilesLines
* List of unstable tests for 10.5.9 releaseElena Stepanova2021-02-161-538/+422
| | | | | | Test code modifications and new failures from buildbot were registered only for the main suite. The rest was updated partially, based on the status of existing JIRA items
* List of unstable tests for 10.5.7 releaseElena Stepanova2020-11-021-491/+393
|
* Merge 10.4 to 10.5Marko Mäkelä2020-10-221-0/+1
|\
| * MDEV-22761: innodb row_search_idx_cond_check handle CHECK_ABORTED_BY_USERDaniel Black2020-10-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | handler_rowid_filter_check can return CHECK_ABORTED_BY_USER. All the functions that call row_search_idx_cond_check handle the CHECK_ABORTED_BY_USER return value. So return it rather than generating an error. This incorrect handling was introduced in MDEV-21794 (8d85715d507d). Reviewer: Marko Mäkelä
| * List of unstable tests for 10.4.14 releaseElena Stepanova2020-08-041-414/+392
| |
* | List of unstable tests for 10.5.5 releaseElena Stepanova2020-08-071-572/+468
| |
* | List of unstable tests for 10.5.4 releaseElena Stepanova2020-06-201-284/+336
|/
* List of unstable tests for 10.4.13 releasemariadb-10.4.13Elena Stepanova2020-05-091-420/+494
|
* List of unstable tests for 10.4.12 releasemariadb-10.4.12Elena Stepanova2020-01-261-231/+268
|
* List of unstable tests for 10.4.11 releasemariadb-10.4.11Elena Stepanova2019-12-101-566/+322
|
* List of unstable tests for 10.4.9 releasemariadb-10.4.9Elena Stepanova2019-11-031-175/+225
|
* Merge 10.3 into 10.4Marko Mäkelä2019-09-271-1/+0
|\
| * Merge 10.2 into 10.3Marko Mäkelä2019-09-271-1/+0
| |\
| | * Remove a useless large test, and add a debug assertionMarko Mäkelä2019-09-271-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | The test innodb_fts.fulltext_table_evict was only creating 1000 tables with fulltext indexes, only to check that no tables with fulltext indexes are being evicted. The reason why tables containing fulltext indexes cannot be evicted is that fts_optimize_init() invokes dict_table_prevent_eviction().
| | * List of unstable tests for 10.2.27 releasemariadb-10.2.27Elena Stepanova2019-09-081-137/+365
| | |
| | * List of unstable tests for 10.2.26 release (updated)mariadb-10.2.26Elena Stepanova2019-07-271-13/+30
| | |
| | * List of unstable tests for 10.2.26 releaseElena Stepanova2019-07-241-615/+623
| | |
| | * Updated list of unstable tests for 10.2.25mariadb-10.2.25Elena Stepanova2019-06-141-74/+78
| | |
| * | List of unstable tests for 10.3.18 releasemariadb-10.3.18Elena Stepanova2019-09-081-157/+431
| | |
| * | List of unstable tests for 10.3.17 release (updated)mariadb-10.3.17Elena Stepanova2019-07-281-16/+37
| | |
| * | List of unstable tests for 10.3.17 releaseElena Stepanova2019-07-241-743/+741
| | |
| * | Updated list of unstable tests for 10.3.16 releasemariadb-10.3.16Elena Stepanova2019-06-151-96/+92
| | |
* | | List of unstable tests for 10.4.8 release (updated)mariadb-10.4.8Elena Stepanova2019-09-081-178/+472
| | |
* | | List of unstable tests for 10.4.7 release (updated)mariadb-10.4.7Elena Stepanova2019-07-301-41/+71
| | |
* | | List of unstable tests for 10.4.7 releaseElena Stepanova2019-07-251-660/+768
| | |
* | | Merge branch '10.3' into 10.4Oleksandr Byelkin2019-06-141-1/+0
|\ \ \ | |/ /
| * | Merge branch '10.2' into 10.3Oleksandr Byelkin2019-06-141-1/+0
| |\ \ | | |/
| | * Merge 10.1 into 10.2Marko Mäkelä2019-06-121-1/+0
| | |\
| | | * MDEV-16111 encryption.innodb_lotoftables failed in buildbot with wrong resultMarko Mäkelä2019-06-121-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove the test, because it easily fails with a result difference. Analysis by Thirunarayanan Balathandayuthapani: By default, innodb_encrypt_tables=0. 1) Test case creates 100 tables in innodb_encrypt_1. 2) creates another 100 unencrypted tables (encryption=off) in innodb_encrypt_2 3) creates another 100 encrypted tables (encryption=on) in innodb_encrypt_3 4) enabling innodb_encrypt_tables=1 and checking that only 100 encrypted tables exist. (already we have 100 in dictionary) 5) opening all tables again (no idea why) 6) After that, set innodb_encrypt_tables=0 and wait for 100 tables to be decrypted (already we have 100 unencrypted tables) 7) dropping all databases Sporadic failure happens because after step 4, it could encrypt the normal table too, because innodb_encryption_threads=4. This test was added in MDEV-9931, which was about InnoDB startup being slow due to all .ibd files being opened. There have been a number of later fixes to this problem. Currently the latest one is commit cad56fbabaea7b5dab0ccfbabb98d0a9c61f3dc3, in which some tests (in particular the test innodb.alter_kill) could fail if all InnoDB .ibd files are read during startup. That could make this test redundant. Let us remove the test, because it is big, slow, unreliable, and does not seem to reliably catch the problem that all files are being read on InnoDB startup.
| | | * Updated list of unstable tests for 10.1.39 releasemariadb-10.1.39Elena Stepanova2019-04-301-61/+122
| | | |
| | | * Updated list of unstable tests for 10.1.38 releasemariadb-10.1.38Elena Stepanova2019-02-041-32/+62
| | | |
| | | * Updated list of unstable tests for 10.1.37 releasemariadb-10.1.37Elena Stepanova2018-10-311-50/+45
| | | |
| | | * Updated list of unstable tests for 10.1.36 releasemariadb-10.1.36Elena Stepanova2018-09-071-80/+38
| | | |
| | | * Updated list of unstable tests for 10.1.35 releaseElena Stepanova2018-08-041-62/+111
| | | |
| | | * Updated list of unstable tests for 10.1.34 releaseElena Stepanova2018-06-151-65/+72
| | | |
| | | * Updated list of unstable tests for 10.1.33 releasemariadb-10.1.33Elena Stepanova2018-05-081-66/+70
| | | |
| | | * Updated list of unstable tests for 10.1.32 releasemariadb-10.1.32Elena Stepanova2018-03-261-46/+55
| | | |
| | | * Updated list of unstable tests for 10.1.31 releasemariadb-10.1.31Elena Stepanova2018-02-041-100/+76
| | | |
| | * | Updated list of unstable tests for 10.2.24Elena Stepanova2019-05-081-99/+149
| | | |
| | * | Updated list of unstable tests for 10.2.23Elena Stepanova2019-03-231-49/+68
| | | |
| | * | Updated list of unstable tests for 10.2.22Elena Stepanova2019-02-081-110/+100
| | | |
| | * | Updated list of unstable tests for 10.2.20Elena Stepanova2018-12-211-65/+49
| | | |
| | * | Updated list of unstable tests for 10.2.19mariadb-10.2.19Elena Stepanova2018-11-121-106/+107
| | | |
| | * | Updated list of unstable tests for 10.2.18mariadb-10.2.18Elena Stepanova2018-09-251-164/+119
| | | |
| | * | Updated list of unstable tests for 10.2.17Elena Stepanova2018-08-121-239/+406
| | | |
| | * | Updated list of unstable tests for 10.2.16mariadb-10.2.16Elena Stepanova2018-06-251-77/+142
| | | |
| | * | Updated list of unstable tests for 10.2.15Elena Stepanova2018-05-151-118/+120
| | | |
| | * | Updated list of unstable tests for 10.2.14mariadb-10.2.14Elena Stepanova2018-03-261-74/+86
| | | |
| | * | Updated list of unstable tests for 10.2.13Elena Stepanova2018-02-121-87/+149
| | | |
| | * | add mdev-504 to unstable tests, to fix appveyorVladislav Vaintroub2018-02-081-0/+1
| | | |