summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_error.result
diff options
context:
space:
mode:
authormikael/pappa@dator5.(none) <>2006-09-08 03:18:05 -0400
committermikael/pappa@dator5.(none) <>2006-09-08 03:18:05 -0400
commit2b3a53e54ef71f1b4c9bc96c7d69224e1cdfc96e (patch)
tree9e8cd806d5b07d30947da99befe0abab9c389be6 /mysql-test/r/partition_error.result
parent814b81ad6b8583fdaa67fa2c6999feac0a5a0a26 (diff)
downloadmariadb-git-2b3a53e54ef71f1b4c9bc96c7d69224e1cdfc96e.tar.gz
Rearranged test cases, move InnoDB test cases to partition_innodb
Diffstat (limited to 'mysql-test/r/partition_error.result')
-rw-r--r--mysql-test/r/partition_error.result24
1 files changed, 0 insertions, 24 deletions
diff --git a/mysql-test/r/partition_error.result b/mysql-test/r/partition_error.result
index a51aaf22f69..4b01b759902 100644
--- a/mysql-test/r/partition_error.result
+++ b/mysql-test/r/partition_error.result
@@ -1,28 +1,4 @@
drop table if exists t1;
-create table t1 (a int)
-engine = x
-partition by key (a);
-Warnings:
-Error 1286 Unknown table engine 'x'
-show create table t1;
-Table Create Table
-t1 CREATE TABLE `t1` (
- `a` int(11) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY KEY (a) */
-drop table t1;
-create table t1 (a int)
-engine = innodb
-partition by list (a)
-(partition p0 values in (0));
-alter table t1 engine = x;
-Warnings:
-Error 1286 Unknown table engine 'x'
-show create table t1;
-Table Create Table
-t1 CREATE TABLE `t1` (
- `a` int(11) DEFAULT NULL
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 /*!50100 PARTITION BY LIST (a) (PARTITION p0 VALUES IN (0) ENGINE = InnoDB) */
-drop table t1;
partition by list (a)
partitions 3
(partition x1 values in (1,2,9,4) tablespace ts1,