From caa4fffa000a863f7594430d38cc3979a98d1ad2 Mon Sep 17 00:00:00 2001 From: Mikael Ronstrom Date: Thu, 29 Oct 2009 18:04:23 +0100 Subject: Changed COLUMN_LIST to COLUMNS after arch review --- mysql-test/t/partition_range.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mysql-test/t/partition_range.test') diff --git a/mysql-test/t/partition_range.test b/mysql-test/t/partition_range.test index b4de6f1e5f6..07c345faed5 100644 --- a/mysql-test/t/partition_range.test +++ b/mysql-test/t/partition_range.test @@ -63,7 +63,7 @@ drop table t1; # --error 1064 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 ER_TOO_MANY_VALUES_ERROR @@ -77,7 +77,7 @@ partition by range(a) (partition p0 values less than (1,"b")); 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; -- cgit v1.2.1