summaryrefslogtreecommitdiff
path: root/mysql-test/t/partition_range.test
diff options
context:
space:
mode:
authorMikael Ronstrom <mikael@mysql.com>2009-10-29 18:04:23 +0100
committerMikael Ronstrom <mikael@mysql.com>2009-10-29 18:04:23 +0100
commitcaa4fffa000a863f7594430d38cc3979a98d1ad2 (patch)
tree99db8fe063f30f3f4d341c3a352f0e87bf3b498e /mysql-test/t/partition_range.test
parent53dc58d841597292e95a1a4105d29d6ec0d47e3e (diff)
downloadmariadb-git-caa4fffa000a863f7594430d38cc3979a98d1ad2.tar.gz
Changed COLUMN_LIST to COLUMNS after arch review
Diffstat (limited to 'mysql-test/t/partition_range.test')
-rw-r--r--mysql-test/t/partition_range.test4
1 files changed, 2 insertions, 2 deletions
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;