diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2017-06-12 14:10:39 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2017-06-12 14:10:39 +0300 |
commit | 75b35a3b6897a0fcef28d73a480d6d9d65c7ac9b (patch) | |
tree | de5447f5b3a2e27011a937a129f4e018ab63ddfe | |
parent | 4325041df6cf13ed1e62749fdb43fb8f138d1e78 (diff) | |
download | mariadb-git-75b35a3b6897a0fcef28d73a480d6d9d65c7ac9b.tar.gz |
Partially disable a test affected by MDEV-13059
-rw-r--r-- | mysql-test/suite/innodb/t/row_format_redundant.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/t/row_format_redundant.test b/mysql-test/suite/innodb/t/row_format_redundant.test index b17b365651a..974588d11eb 100644 --- a/mysql-test/suite/innodb/t/row_format_redundant.test +++ b/mysql-test/suite/innodb/t/row_format_redundant.test @@ -2,6 +2,16 @@ # Embedded mode doesn't allow restarting --source include/not_embedded.inc +# MDEV-13059 XtraDB hangs on Windows due to failing to release +# block->lock X-latch in innodb_read_only mode +if (`SELECT count(*) FROM information_schema.plugins WHERE + plugin_name = 'innodb' AND plugin_status = 'active' AND + plugin_description LIKE '%xtradb%'`){ + if (`SELECT @@version_compile_os IN ('Win32','Win64','Windows')`) { + skip MDEV-13059 XtraDB hangs on Windows in innodb_read_only mode; + } +} + create table t1 (a int not null, d varchar(15) not null, b varchar(198) not null, c char(156), fulltext ftsic(c)) engine=InnoDB |