1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Changed COLUMN_LIST to COLUMNS after arch review

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

View File

@@ -1,7 +1,7 @@
drop table if exists t1;
create table t1 (a varchar(5))
engine=memory
partition by range column_list(a)
partition by range columns(a)
( partition p0 values less than ('m'),
partition p1 values less than ('za'));
insert into t1 values ('j');
@@ -9,7 +9,7 @@ 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 by range columns(a)
( partition p0 values less than ('m'),
partition p1 values less than ('za'));
insert into t1 values ('j');
@@ -17,7 +17,7 @@ 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 by range columns(a)
( partition p0 values less than ('m'),
partition p1 values less than ('za'));
insert into t1 values ('j');