diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2009-10-16 17:44:49 +0200 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2009-10-16 17:44:49 +0200 |
commit | 760dd08d97a1f9df3f2e43e28cdad25f3742bfe4 (patch) | |
tree | d72966960e9cc7a4d4c284151f8757b9760a4ab3 /mysql-test/r/partition_range.result | |
parent | c90669c4d423ba46f09aadde5ff6662e8a63a1c0 (diff) | |
parent | 29b7a0aadcb9b18258f0286cbd7af7e3143c4148 (diff) | |
download | mariadb-git-760dd08d97a1f9df3f2e43e28cdad25f3742bfe4.tar.gz |
Merged in latest changes
Diffstat (limited to 'mysql-test/r/partition_range.result')
-rw-r--r-- | mysql-test/r/partition_range.result | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mysql-test/r/partition_range.result b/mysql-test/r/partition_range.result index 00ada13ed13..0eca01b54c7 100644 --- a/mysql-test/r/partition_range.result +++ b/mysql-test/r/partition_range.result @@ -84,11 +84,6 @@ create table t1 (a int, b char(20)) partition by range(a) (partition p0 values less than (1,"b")); ERROR HY000: Cannot have more than one value for this type of RANGE partitioning -create table t1 (a int, b char(20)); -create global index inx on t1 (a,b) -partition by range (a) -(partition p0 values less than (1)); -drop table t1; create table t1 (a int, b char(20)) partition by range column_list(b) (partition p0 values less than ("b")); |