Fix test case to allow success on create table (Windows).
This commit is contained in:
parent
c9a8859db6
commit
76c3981e43
@ -7,7 +7,7 @@
|
||||
|
||||
# Ignore OS errors
|
||||
call mtr.add_suppression("InnoDB: File ./test/t1*");
|
||||
call mtr.add_suppression("nnoDB: Error number*");
|
||||
call mtr.add_suppression("InnoDB: Error number*");
|
||||
|
||||
# MDEV-7046: MySQL#74480 - Failing assertion: os_file_status(newpath, &exists, &type)
|
||||
# after Operating system error number 36 in a file operation
|
||||
@ -27,7 +27,7 @@ drop table t1;
|
||||
|
||||
DROP DATABASE test;CREATE DATABASE test;USE test;
|
||||
SET @@session.storage_engine=MYISAM;
|
||||
--error 1,0
|
||||
--error 0,1
|
||||
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));
|
||||
drop table if exists t1;
|
||||
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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user