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
5bba1109
Commit
5bba1109
authored
Dec 04, 2014
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add possibility to success on Windows.
parent
6cd78eed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
mysql-test/suite/innodb/t/innodb-mdev7046.test
mysql-test/suite/innodb/t/innodb-mdev7046.test
+2
-1
No files found.
mysql-test/suite/innodb/t/innodb-mdev7046.test
View file @
5bba1109
...
...
@@ -27,8 +27,9 @@ drop table t1;
DROP
DATABASE
test
;
CREATE
DATABASE
test
;
USE
test
;
SET
@@
session
.
storage_engine
=
MYISAM
;
--
error
1
--
error
1
,
0
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
));
ALTER
TABLE
t1
ENGINE
=
InnoDB
;
...
...
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