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:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user