mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
BUG#16002: Make partition functions that are unsigned work properly
This commit is contained in:
parent
ba5d08f340
commit
cef06fdb61
@@ -747,3 +747,8 @@ CREATE TABLE t1(a int)
|
||||
--error ER_NO_PARTITION_FOR_GIVEN_VALUE
|
||||
insert into t1 values (10);
|
||||
drop table t1;
|
||||
|
||||
--error ER_SIGNED_PARTITION_CONSTANT_ERROR
|
||||
create table t1 (a bigint unsigned)
|
||||
partition by range (a)
|
||||
(partition p0 values less than (-1));
|
||||
|
||||
Reference in New Issue
Block a user