diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2009-10-16 17:41:15 +0200 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2009-10-16 17:41:15 +0200 |
commit | 29b7a0aadcb9b18258f0286cbd7af7e3143c4148 (patch) | |
tree | 2b0be441dab227e906fe718c5524892d2675b6bd /mysql-test/r/partition_range.result | |
parent | 975c1ff80801060abb7665f84d899cc0a57c7382 (diff) | |
download | mariadb-git-29b7a0aadcb9b18258f0286cbd7af7e3143c4148.tar.gz |
Removed GLOBAL INDEX syntax, need to develop GLOBAL indexes before adding syntax for it
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 fc15665d698..a3d02b66c0a 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 (column_list(1,"b"))); ERROR HY000: Inconsistency in usage of column lists for 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 (column_list("b"))); |