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
9ecf9c30
Commit
9ecf9c30
authored
Aug 25, 2008
by
Sergey Petrunia
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
6df6aeca
511a89d7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
mysql-test/r/partition_symlink.result
mysql-test/r/partition_symlink.result
+2
-2
mysql-test/t/partition_symlink.test
mysql-test/t/partition_symlink.test
+4
-2
No files found.
mysql-test/r/partition_symlink.result
View file @
9ecf9c30
...
@@ -113,9 +113,9 @@ set @@sql_mode=@org_mode;
...
@@ -113,9 +113,9 @@ set @@sql_mode=@org_mode;
create table t1 (a int)
create table t1 (a int)
partition by key (a)
partition by key (a)
(partition p0 DATA DIRECTORY 'part-data' INDEX DIRECTORY 'part-data');
(partition p0 DATA DIRECTORY 'part-data' INDEX DIRECTORY 'part-data');
ERROR HY000: Incorrect arguments to DATA DIRECTORY
Got one of the listed errors
create table t1 (a int)
create table t1 (a int)
partition by key (a)
partition by key (a)
(partition p0,
(partition p0,
partition p1 DATA DIRECTORY 'part-data' INDEX DIRECTORY 'part-data');
partition p1 DATA DIRECTORY 'part-data' INDEX DIRECTORY 'part-data');
ERROR HY000: Incorrect arguments to DATA DIRECTORY
Got one of the listed errors
mysql-test/t/partition_symlink.test
View file @
9ecf9c30
...
@@ -154,7 +154,8 @@ set @@sql_mode=@org_mode;
...
@@ -154,7 +154,8 @@ set @@sql_mode=@org_mode;
#
#
# Bug 21350: Data Directory problems
# Bug 21350: Data Directory problems
#
#
--
error
ER_WRONG_ARGUMENTS
# Added ER_WRONG_TABLE_NAME and reported bug#39045
--
error
ER_WRONG_ARGUMENTS
,
ER_WRONG_TABLE_NAME
create
table
t1
(
a
int
)
create
table
t1
(
a
int
)
partition
by
key
(
a
)
partition
by
key
(
a
)
(
partition
p0
DATA
DIRECTORY
'part-data'
INDEX
DIRECTORY
'part-data'
);
(
partition
p0
DATA
DIRECTORY
'part-data'
INDEX
DIRECTORY
'part-data'
);
...
@@ -163,7 +164,8 @@ partition by key (a)
...
@@ -163,7 +164,8 @@ partition by key (a)
# Insert a test that manages to create the first partition and fails with
# Insert a test that manages to create the first partition and fails with
# the second, ensure that we clean up afterwards in a proper manner.
# the second, ensure that we clean up afterwards in a proper manner.
#
#
--
error
ER_WRONG_ARGUMENTS
# Added ER_WRONG_TABLE_NAME and reported bug#39045
--
error
ER_WRONG_ARGUMENTS
,
ER_WRONG_TABLE_NAME
create
table
t1
(
a
int
)
create
table
t1
(
a
int
)
partition
by
key
(
a
)
partition
by
key
(
a
)
(
partition
p0
,
(
partition
p0
,
...
...
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