diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2009-10-16 16:16:06 +0200 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2009-10-16 16:16:06 +0200 |
commit | c90669c4d423ba46f09aadde5ff6662e8a63a1c0 (patch) | |
tree | df5230b4e7781d295ef1eb1cedbd289ee413a075 /mysql-test/r/partition_innodb.result | |
parent | 576dd76aa81787f71e038efd9e00713b7a44b3c5 (diff) | |
download | mariadb-git-c90669c4d423ba46f09aadde5ff6662e8a63a1c0.tar.gz |
Fixed removal of column_list keyword for VALUES part, retained for PARTITION BY RANGE/LIST COLUMN_LIST, not entirely working yet
Diffstat (limited to 'mysql-test/r/partition_innodb.result')
-rw-r--r-- | mysql-test/r/partition_innodb.result | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/r/partition_innodb.result b/mysql-test/r/partition_innodb.result index fb991ef5fcc..89cf8709b90 100644 --- a/mysql-test/r/partition_innodb.result +++ b/mysql-test/r/partition_innodb.result @@ -2,24 +2,24 @@ drop table if exists t1; create table t1 (a varchar(5)) engine=memory partition by range column_list(a) -( partition p0 values less than (column_list('m')), -partition p1 values less than (column_list('za'))); +( partition p0 values less than ('m'), +partition p1 values less than ('za')); insert into t1 values ('j'); update t1 set a = 'z' where (a >= 'j'); drop table t1; create table t1 (a varchar(5)) engine=myisam partition by range column_list(a) -( partition p0 values less than (column_list('m')), -partition p1 values less than (column_list('za'))); +( partition p0 values less than ('m'), +partition p1 values less than ('za')); insert into t1 values ('j'); update t1 set a = 'z' where (a >= 'j'); drop table t1; create table t1 (a varchar(5)) engine=innodb partition by range column_list(a) -( partition p0 values less than (column_list('m')), -partition p1 values less than (column_list('za'))); +( partition p0 values less than ('m'), +partition p1 values less than ('za')); insert into t1 values ('j'); update t1 set a = 'z' where (a >= 'j'); drop table t1; |