diff options
author | Mattias Jonsson <mattias.jonsson@sun.com> | 2009-11-17 22:51:49 +0100 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@sun.com> | 2009-11-17 22:51:49 +0100 |
commit | 352cc8a9d07c7ea092f1851fdd8189a44fa54244 (patch) | |
tree | 780ca40436b3eca36d8c012994efa0d2a682b2d6 /mysql-test/r/partition.result | |
parent | 08e37788a669614826aea34e83f8b14b8737ee7c (diff) | |
parent | 2cd5f29f4ba45e5464e41b5027540dcb134b7659 (diff) | |
download | mariadb-git-352cc8a9d07c7ea092f1851fdd8189a44fa54244.tar.gz |
merge
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r-- | mysql-test/r/partition.result | 7 |
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), |