mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merged in latest changes
This commit is contained in:
@ -84,11 +84,6 @@ create table t1 (a int, b char(20))
|
||||
partition by range(a)
|
||||
(partition p0 values less than (1,"b"));
|
||||
ERROR HY000: Cannot have more than one value for this type of RANGE partitioning
|
||||
create table t1 (a int, b char(20));
|
||||
create global index inx on t1 (a,b)
|
||||
partition by range (a)
|
||||
(partition p0 values less than (1));
|
||||
drop table t1;
|
||||
create table t1 (a int, b char(20))
|
||||
partition by range column_list(b)
|
||||
(partition p0 values less than ("b"));
|
||||
|
Reference in New Issue
Block a user