Changed COLUMN_LIST to COLUMNS after arch review

This commit is contained in:
Mikael Ronstrom 2009-10-29 18:04:23 +01:00
commit caa4fffa00
12 changed files with 139 additions and 141 deletions

View file

@ -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;