summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_range.result
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/r/partition_range.result
parent53dc58d841597292e95a1a4105d29d6ec0d47e3e (diff)
downloadmariadb-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.result4
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)