summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition.result
diff options
context:
space:
mode:
authorMattias Jonsson <mattias.jonsson@sun.com>2009-11-17 22:51:49 +0100
committerMattias Jonsson <mattias.jonsson@sun.com>2009-11-17 22:51:49 +0100
commit3faaf333334ad5b16e65003b66d574db663c7148 (patch)
tree780ca40436b3eca36d8c012994efa0d2a682b2d6 /mysql-test/r/partition.result
parent7a6ab645ab02d5cb19288f1b3b5fcd271732bb4a (diff)
parent98fd304278ca029b56671412e8bec72ed4f17537 (diff)
downloadmariadb-git-3faaf333334ad5b16e65003b66d574db663c7148.tar.gz
merge
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r--mysql-test/r/partition.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result
index d3badc52528..7e14a0ea7c8 100644
--- a/mysql-test/r/partition.result
+++ b/mysql-test/r/partition.result
@@ -56,6 +56,13 @@ t1 CREATE TABLE `t1` (
PARTITION p3 VALUES LESS THAN (733969) ENGINE = MyISAM,
PARTITION pmax VALUES LESS THAN MAXVALUE ENGINE = MyISAM) */
DROP TABLE t1;
+create table t1 (a int NOT NULL, b varchar(5) NOT NULL)
+default charset=utf8
+partition by list (a)
+subpartition by key (b)
+(partition p0 values in (1),
+partition p1 values in (2));
+drop table t1;
create table t1 (a int, b int, key(a))
partition by list (a)
( partition p0 values in (1),