mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Bug #12097 More fixes
This commit is contained in:
parent
bbab59eb18
commit
9229a99375
@@ -290,7 +290,8 @@ partition by range (a)
|
||||
partitions 2
|
||||
(partition x1 values less than (4.0) tablespace ts1,
|
||||
partition x2 values less than (8) tablespace ts2);
|
||||
ERROR HY000: VALUES LESS THAN value must be of same type as partition function
|
||||
ERROR 42000: VALUES value must be of same type as partition function near ') tablespace ts1,
|
||||
partition x2 values less than (8) tablespace ts2)' at line 8
|
||||
CREATE TABLE t1 (
|
||||
a int not null,
|
||||
b int not null,
|
||||
@@ -530,7 +531,8 @@ partition by list (a)
|
||||
partitions 2
|
||||
(partition x1 values in (4.0, 12+8),
|
||||
partition x2 values in (3, 21));
|
||||
ERROR HY000: VALUES IN value must be of same type as partition function
|
||||
ERROR 42000: VALUES value must be of same type as partition function near ' 12+8),
|
||||
partition x2 values in (3, 21))' at line 8
|
||||
CREATE TABLE t1 (
|
||||
a int not null,
|
||||
b int not null,
|
||||
|
||||
Reference in New Issue
Block a user