Skip to content

Commit 76c3981

Browse files
author
Jan Lindström
committed
Fix test case to allow success on create table (Windows).
1 parent c9a8859 commit 76c3981

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mysql-test/suite/innodb/t/innodb-mdev7046.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Ignore OS errors
99
call mtr.add_suppression("InnoDB: File ./test/t1*");
10-
call mtr.add_suppression("nnoDB: Error number*");
10+
call mtr.add_suppression("InnoDB: Error number*");
1111

1212
# MDEV-7046: MySQL#74480 - Failing assertion: os_file_status(newpath, &exists, &type)
1313
# after Operating system error number 36 in a file operation
@@ -27,7 +27,7 @@ drop table t1;
2727

2828
DROP DATABASE test;CREATE DATABASE test;USE test;
2929
SET @@session.storage_engine=MYISAM;
30-
--error 1,0
30+
--error 0,1
3131
CREATE TABLE t1(id INT,purchased DATE)PARTITION BY RANGE(YEAR(purchased)) SUBPARTITION BY HASH(TO_DAYS(purchased)) SUBPARTITIONS 2 (PARTITION p0 VALUES LESS THAN MAXVALUE (SUBPARTITION sp0 DATA DIRECTORY='/tmp/not-existing' INDEX DIRECTORY='/tmp/not-existing',SUBPARTITION sp1));
3232
drop table if exists t1;
3333
CREATE TABLE t1(id INT,purchased DATE)PARTITION BY RANGE(YEAR(purchased)) SUBPARTITION BY HASH(TO_DAYS(purchased)) SUBPARTITIONS 2 (PARTITION p0 VALUES LESS THAN MAXVALUE (SUBPARTITION sp0,SUBPARTITION sp1));

0 commit comments

Comments
 (0)