summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_range.result
diff options
context:
space:
mode:
authorMikael Ronstrom <mikael@mysql.com>2009-10-21 12:40:21 +0200
committerMikael Ronstrom <mikael@mysql.com>2009-10-21 12:40:21 +0200
commitbbd922b09c94bafb18e583a00865750164358736 (patch)
treef8665cdbc5f804477667c1ef89f27f0de619b382 /mysql-test/r/partition_range.result
parentaaa79d9530e64bb092bb994312b7e490d16b9eef (diff)
downloadmariadb-git-bbd922b09c94bafb18e583a00865750164358736.tar.gz
Removed column_list and fixed all issues relating to this change
Diffstat (limited to 'mysql-test/r/partition_range.result')
-rw-r--r--mysql-test/r/partition_range.result3
1 files changed, 1 insertions, 2 deletions
diff --git a/mysql-test/r/partition_range.result b/mysql-test/r/partition_range.result
index 0eca01b54c7..44e76f8751e 100644
--- a/mysql-test/r/partition_range.result
+++ b/mysql-test/r/partition_range.result
@@ -3,8 +3,7 @@ create table t1 (a int)
partition by range (a)
( partition p0 values less than (NULL),
partition p1 values less than (MAXVALUE));
-ERROR 42000: Not allowed to use NULL value in VALUES LESS THAN near '),
-partition p1 values less than (MAXVALUE))' at line 3
+ERROR HY000: Not allowed to use NULL value in VALUES LESS THAN
create table t1 (a datetime not null)
partition by range (TO_SECONDS(a))
( partition p0 VALUES LESS THAN (TO_SECONDS('2007-03-08 00:00:00')),