diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2009-10-29 18:04:23 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2009-10-29 18:04:23 +0100 |
commit | caa4fffa000a863f7594430d38cc3979a98d1ad2 (patch) | |
tree | 99db8fe063f30f3f4d341c3a352f0e87bf3b498e /mysql-test/r/partition_range.result | |
parent | 53dc58d841597292e95a1a4105d29d6ec0d47e3e (diff) | |
download | mariadb-git-caa4fffa000a863f7594430d38cc3979a98d1ad2.tar.gz |
Changed COLUMN_LIST to COLUMNS after arch review
Diffstat (limited to 'mysql-test/r/partition_range.result')
-rw-r--r-- | mysql-test/r/partition_range.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/partition_range.result b/mysql-test/r/partition_range.result index cfc8bb0b7a4..87cb4fba306 100644 --- a/mysql-test/r/partition_range.result +++ b/mysql-test/r/partition_range.result @@ -77,7 +77,7 @@ a 2004-01-01 11:59:29 drop table t1; create table t1 (a int, b char(20)) -partition by range column_list(a,b) +partition by range columns(a,b) (partition p0 values less than (1)); ERROR 42000: Inconsistency in usage of column lists for partitioning near '))' at line 3 create table t1 (a int, b char(20)) @@ -89,7 +89,7 @@ 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)) -partition by range column_list(b) +partition by range columns(b) (partition p0 values less than ("b")); drop table t1; create table t1 (a int) |