Commit graph

67 commits

Author SHA1 Message Date
Elena Stepanova
0a891ad6a6 List of unstable tests for 10.2.31 release 2020-01-26 18:40:22 +02:00
Elena Stepanova
3cc0e0befb List of unstable tests for 10.2.30 release 2019-12-05 01:28:11 +02:00
Elena Stepanova
1552b254a0 List of unstable tests for 10.2.28 release 2019-10-31 20:42:08 +02:00
Marko Mäkelä
4ec0c346b8 Remove a useless large test, and add a debug assertion
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().
2019-09-27 14:05:39 +03:00
Elena Stepanova
f9f968557f List of unstable tests for 10.2.27 release 2019-09-08 16:21:48 +03:00
Elena Stepanova
d6886b95d0 List of unstable tests for 10.2.26 release (updated) 2019-07-27 00:19:28 +03:00
Elena Stepanova
c22305f050 List of unstable tests for 10.2.26 release 2019-07-24 12:52:35 +03:00
Elena Stepanova
21eed902f3 Updated list of unstable tests for 10.2.25 2019-06-14 21:23:53 +03:00
Marko Mäkelä
1d31bed212 Merge 10.1 into 10.2 2019-06-12 19:12:00 +03:00
Marko Mäkelä
56c60b2fc5 MDEV-16111 encryption.innodb_lotoftables failed in buildbot with wrong result
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 cad56fbaba, 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.
2019-06-12 19:08:49 +03:00
Elena Stepanova
49ef1c75e3 Updated list of unstable tests for 10.2.24 2019-05-08 00:07:57 +03:00
Elena Stepanova
e9da78ee92 Updated list of unstable tests for 10.1.39 release 2019-04-30 23:58:14 +03:00
Elena Stepanova
0e56eba9d5 Updated list of unstable tests for 10.2.23 2019-03-23 11:29:24 +01:00
Elena Stepanova
0216f87d38 Updated list of unstable tests for 10.2.22 2019-02-08 01:07:19 +02:00
Elena Stepanova
4c490d6df6 Updated list of unstable tests for 10.1.38 release 2019-02-04 18:55:35 +02:00
Elena Stepanova
b82df71174 Updated list of unstable tests for 10.2.20 2018-12-21 18:59:11 +02:00
Elena Stepanova
32bebfeefb Updated list of unstable tests for 10.2.19 2018-11-12 18:19:31 +02:00
Elena Stepanova
8d834cd0f3 Updated list of unstable tests for 10.1.37 release 2018-10-31 23:48:29 +02:00
Elena Stepanova
2dfb4a8abe Updated list of unstable tests for 10.2.18 2018-09-25 02:45:40 +03:00
Elena Stepanova
b1d72f1722 Updated list of unstable tests for 10.1.36 release 2018-09-07 16:49:39 +03:00
Elena Stepanova
4cbf77e16e Updated list of unstable tests for 10.2.17 2018-08-12 04:56:06 +03:00
Elena Stepanova
1e37fa70bd Updated list of unstable tests for 10.1.35 release 2018-08-04 03:06:27 +03:00
Elena Stepanova
bb825194b8 Updated list of unstable tests for 10.2.16 2018-06-25 14:04:16 +03:00
Elena Stepanova
f4387288ab Updated list of unstable tests for 10.1.34 release 2018-06-15 03:49:04 +03:00
Elena Stepanova
d9f9cd1a10 Updated list of unstable tests for 10.2.15 2018-05-15 23:42:20 +03:00
Elena Stepanova
1025363a35 Updated list of unstable tests for 10.1.33 release 2018-05-08 02:13:07 +03:00
Elena Stepanova
b3cdafcb93 Updated list of unstable tests for 10.2.14 2018-03-26 19:36:39 +03:00
Elena Stepanova
4d83b01537 Updated list of unstable tests for 10.1.32 release 2018-03-26 17:14:08 +03:00
Elena Stepanova
7a106d1961 Updated list of unstable tests for 10.2.13 2018-02-12 03:20:09 +02:00
Vladislav Vaintroub
f01ce62c8f add mdev-504 to unstable tests, to fix appveyor 2018-02-08 13:46:43 +00:00
Elena Stepanova
aba15b864a Updated list of unstable tests for 10.1.31 release 2018-02-04 04:28:14 +02:00
Marko Mäkelä
d361401bc2 Merge 10.1 into 10.2, with some MDEV-14799 fixups
trx_undo_page_report_modify(): For SPATIAL INDEX, keep logging
updated off-page columns twice, so that
the minimum bounding rectangle (MBR) will be logged.
Avoiding the redundant logging would require larger changes
to the undo log format.

row_build_index_entry_low(): Handle SPATIAL_UNKNOWN more robustly,
by refusing to purge the record from the spatial index.
We can get this code when processing old undo log from 10.2.10 or
10.2.11 (the releases affected by MDEV-14799, which was a regression
from MDEV-14051).
2018-01-03 11:56:24 +02:00
Marko Mäkelä
7a9fee9853 MDEV-13568 gcol.innodb_virtual_debug_purge failed in buildbot with wrong result
The InnoDB background tasks can modify tables while LOCK TABLES...WRITE
is in effect. The purge of InnoDB history always worked like this in
MariaDB, but in MySQL 5.7 it sometimes yields to LOCK TABLES.

Also, make gcol.innodb_virtual_index run the purge for an UPDATE
before DROP TABLE is executed.
2018-01-03 11:39:17 +02:00
Elena Stepanova
8bcbcac053 Updated list of unstable tests for 10.2.12 2017-12-29 17:25:21 +02:00
Elena Stepanova
5f896b3604 Updated list of unstable tests for 10.1.30 release 2017-12-21 03:31:39 +02:00
Elena Stepanova
77872e4519 Additions to the list of unstable tests for 10.2.11 2017-11-27 12:04:51 +02:00
Elena Stepanova
e6d6b0c08c Updated list of unstable tests for 10.2.11 2017-11-24 01:38:38 +02:00
Elena Stepanova
1fdf11669c Updated list of unstable tests for 10.1.29 release 2017-11-10 21:06:58 +02:00
Elena Stepanova
de6bfbd5e9 Updated list of unstable tests for 10.2.10 2017-10-30 03:25:49 +02:00
Elena Stepanova
cd2a85e763 Updated list of unstable tests for 10.2.9 2017-09-22 21:47:38 +03:00
Elena Stepanova
d8fe5fa131 Updated list of unstable tests for 10.1.27 release 2017-09-22 17:54:23 +03:00
Elena Stepanova
f269915381 Updated list of unstable tests for 10.2.8 2017-08-18 02:51:30 +03:00
Elena Stepanova
535910ae5f Updated list of unstable tests for 10.1.26 release 2017-08-09 16:15:30 +03:00
Elena Stepanova
3af125e082 Updated list of unstable tests for 10.2.7 2017-07-09 20:42:29 +03:00
Elena Stepanova
da7604a294 Latest additions to the list of unstable tests in 10.1.25 2017-07-01 21:12:26 +03:00
Elena Stepanova
3125ba8912 Updated list of unstable tests for 10.1.25 release 2017-06-27 03:48:04 +03:00
Elena Stepanova
8c35f105d2 Latest additions to the list of unstable tests in 10.1.24 2017-05-26 19:54:09 +03:00
Elena Stepanova
6bc9949210 Updated list of unstable tests for 10.1.24 release 2017-05-24 20:38:40 +03:00
Elena Stepanova
ca7cf69cb1 Additions to 10.2.6 unstable-tests list 2017-05-15 02:09:28 +03:00
Elena Stepanova
bde397b3eb List of unstable tests for 10.2.6 (initial 10.2 version for GA) 2017-05-10 01:57:54 +03:00