mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
removed test case no longer supported
This commit is contained in:
parent
a80b1ba2c9
commit
6097e627b4
2 changed files with 1 additions and 21 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue