We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4325041 commit 75b35a3Copy full SHA for 75b35a3
mysql-test/suite/innodb/t/row_format_redundant.test
@@ -2,6 +2,16 @@
2
# Embedded mode doesn't allow restarting
3
--source include/not_embedded.inc
4
5
+# MDEV-13059 XtraDB hangs on Windows due to failing to release
6
+# block->lock X-latch in innodb_read_only mode
7
+if (`SELECT count(*) FROM information_schema.plugins WHERE
8
+ plugin_name = 'innodb' AND plugin_status = 'active' AND
9
+ plugin_description LIKE '%xtradb%'`){
10
+ if (`SELECT @@version_compile_os IN ('Win32','Win64','Windows')`) {
11
+ skip MDEV-13059 XtraDB hangs on Windows in innodb_read_only mode;
12
+ }
13
+}
14
+
15
create table t1 (a int not null, d varchar(15) not null, b
16
varchar(198) not null, c char(156),
17
fulltext ftsic(c)) engine=InnoDB
0 commit comments