From 441b53f8ba15c20428035e076a7ea895b37b128d 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_innodb.test | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mysql-test/t/partition_innodb.test') diff --git a/mysql-test/t/partition_innodb.test b/mysql-test/t/partition_innodb.test index eadf4876540..5aef5dcaa18 100644 --- a/mysql-test/t/partition_innodb.test +++ b/mysql-test/t/partition_innodb.test @@ -10,7 +10,7 @@ drop table if exists t1; # create table t1 (a varchar(5)) engine=memory -partition by range column_list(a) +partition by range columns(a) ( partition p0 values less than ('m'), partition p1 values less than ('za')); insert into t1 values ('j'); @@ -19,7 +19,7 @@ drop table t1; create table t1 (a varchar(5)) engine=myisam -partition by range column_list(a) +partition by range columns(a) ( partition p0 values less than ('m'), partition p1 values less than ('za')); insert into t1 values ('j'); @@ -28,7 +28,7 @@ drop table t1; create table t1 (a varchar(5)) engine=innodb -partition by range column_list(a) +partition by range columns(a) ( partition p0 values less than ('m'), partition p1 values less than ('za')); insert into t1 values ('j'); -- cgit v1.2.1