Skip to content

Commit 851f65b

Browse files
author
Mikael Ronstrom
committed
Merged WL#3352 into mysql-next-mr
--BZR-- revision-id: [email protected] property-branch-nick: mysql-next-wl3352 testament3-sha1: d286e6acf08fa9f17e897b9c3ddaf4a56b94004f
2 parents 3d8e6c9 + f158b6f commit 851f65b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4929
-1372
lines changed

.bzrfileids

376 Bytes
Binary file not shown.

mysql-test/r/partition.result

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -420,14 +420,12 @@ create table t1 (a bigint)
420420
partition by range (a)
421421
(partition p0 values less than (0xFFFFFFFFFFFFFFFF),
422422
partition p1 values less than (10));
423-
ERROR 42000: VALUES value must be of same type as partition function near '),
424-
partition p1 values less than (10))' at line 3
423+
ERROR HY000: VALUES value must be of same type as partition function
425424
create table t1 (a bigint)
426425
partition by list (a)
427426
(partition p0 values in (0xFFFFFFFFFFFFFFFF),
428427
partition p1 values in (10));
429-
ERROR 42000: VALUES value must be of same type as partition function near '),
430-
partition p1 values in (10))' at line 3
428+
ERROR HY000: VALUES value must be of same type as partition function
431429
create table t1 (a bigint unsigned)
432430
partition by range (a)
433431
(partition p0 values less than (100),
@@ -1421,7 +1419,7 @@ DROP TABLE t1;
14211419
CREATE TABLE t1 (a int)
14221420
PARTITION BY RANGE(a)
14231421
(PARTITION p0 VALUES LESS THAN (NULL));
1424-
ERROR 42000: Not allowed to use NULL value in VALUES LESS THAN near '))' at line 3
1422+
ERROR HY000: Not allowed to use NULL value in VALUES LESS THAN
14251423
create table t1 (s1 int auto_increment primary key)
14261424
partition by list (s1)
14271425
(partition p1 values in (1),

0 commit comments

Comments
 (0)