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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e9c7c156
Commit
e9c7c156
authored
Jul 02, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed test case no longer supported
parent
b3a40566
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
21 deletions
+1
-21
mysql-test/r/partition.result
mysql-test/r/partition.result
+0
-10
mysql-test/t/partition.test
mysql-test/t/partition.test
+1
-11
No files found.
mysql-test/r/partition.result
View file @
e9c7c156
...
...
@@ -1267,14 +1267,4 @@ ALTER TABLE general_log PARTITION BY RANGE (TO_DAYS(event_time))
ERROR HY000: Incorrect usage of PARTITION and log table
ALTER TABLE general_log ENGINE = CSV;
SET GLOBAL general_log = default;
CREATE TABLE `t1` ( `a` varchar(1)) ENGINE=MyISAM
PARTITION BY LIST (CASE a WHEN 'a' THEN 1
WHEN 'b' THEN 2
WHEN 'c' THEN 3
END) (
PARTITION a VALUES IN (1),
PARTITION b VALUES IN (2),
PARTITION c VALUES IN (3)
);
DROP TABLE t1;
End of 5.1 tests
mysql-test/t/partition.test
View file @
e9c7c156
...
...
@@ -1496,17 +1496,7 @@ SET GLOBAL general_log = default;
#
# Bug #27084 partitioning by list seems failing when using case
# BUG #18198: Case no longer supported, test case removed
#
CREATE
TABLE
`t1`
(
`a`
varchar
(
1
))
ENGINE
=
MyISAM
PARTITION
BY
LIST
(
CASE
a
WHEN
'a'
THEN
1
WHEN
'b'
THEN
2
WHEN
'c'
THEN
3
END
)
(
PARTITION
a
VALUES
IN
(
1
),
PARTITION
b
VALUES
IN
(
2
),
PARTITION
c
VALUES
IN
(
3
)
);
DROP
TABLE
t1
;
--
echo
End
of
5.1
tests
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