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
da7e78ce
Commit
da7e78ce
authored
Jul 02, 2007
by
mikael@dator6.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed test case no longer supported
parent
8ccd9ee9
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 @
da7e78ce
...
@@ -1267,14 +1267,4 @@ ALTER TABLE general_log PARTITION BY RANGE (TO_DAYS(event_time))
...
@@ -1267,14 +1267,4 @@ ALTER TABLE general_log PARTITION BY RANGE (TO_DAYS(event_time))
ERROR HY000: Incorrect usage of PARTITION and log table
ERROR HY000: Incorrect usage of PARTITION and log table
ALTER TABLE general_log ENGINE = CSV;
ALTER TABLE general_log ENGINE = CSV;
SET GLOBAL general_log = default;
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
End of 5.1 tests
mysql-test/t/partition.test
View file @
da7e78ce
...
@@ -1496,17 +1496,7 @@ SET GLOBAL general_log = default;
...
@@ -1496,17 +1496,7 @@ SET GLOBAL general_log = default;
#
#
# Bug #27084 partitioning by list seems failing when using case
# 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
--
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