summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition.result
diff options
context:
space:
mode:
authorunknown <mikael@dator6.(none)>2007-07-02 20:11:54 +0200
committerunknown <mikael@dator6.(none)>2007-07-02 20:11:54 +0200
commit6097e627b43b5486564a571e7e2cf28d2c3c834a (patch)
tree1fd1b53dfec8af3032f31ca1c669962af8d5e1b8 /mysql-test/r/partition.result
parenta80b1ba2c9c29469256b77ccb69df0639cc6e9a3 (diff)
downloadmariadb-git-6097e627b43b5486564a571e7e2cf28d2c3c834a.tar.gz
removed test case no longer supported
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r--mysql-test/r/partition.result10
1 files changed, 0 insertions, 10 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result
index bf347aea196..5d985d053fc 100644
--- a/mysql-test/r/partition.result
+++ b/mysql-test/r/partition.result
@@ -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