Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
76c3981e
Commit
76c3981e
authored
Dec 10, 2014
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test case to allow success on create table (Windows).
parent
c9a8859d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mysql-test/suite/innodb/t/innodb-mdev7046.test
mysql-test/suite/innodb/t/innodb-mdev7046.test
+2
-2
No files found.
mysql-test/suite/innodb/t/innodb-mdev7046.test
View file @
76c3981e
...
...
@@ -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
(
"
I
nnoDB: 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
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment