mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Changed COLUMN_LIST to COLUMNS after arch review
This commit is contained in:
parent
53dc58d841
commit
caa4fffa00
12 changed files with 139 additions and 141 deletions
|
|
@ -63,7 +63,7 @@ drop table t1;
|
|||
#
|
||||
--error 1064
|
||||
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 ER_TOO_MANY_VALUES_ERROR
|
||||
|
|
@ -77,7 +77,7 @@ partition by range(a)
|
|||
(partition p0 values less than (1,"b"));
|
||||
|
||||
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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue