Skip to content

Commit

Permalink
ddl: invalid multiple MAXVALUE partitions (#36329) (#36345) (#36447)
Browse files Browse the repository at this point in the history
close #36329
  • Loading branch information
ti-srebot authored Aug 3, 2022
1 parent dc157fc commit 7fc6661
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions ddl/db_partition_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,14 @@ create table log_message_1 (
"partition p1 values less than ('A'));",
dbterror.ErrRangeNotIncreasing,
},
{
"create table t(d datetime)" +
"partition by range columns (d) (" +
"partition p0 values less than ('2022-01-01')," +
"partition p1 values less than (MAXVALUE), " +
"partition p2 values less than (MAXVALUE));",
dbterror.ErrRangeNotIncreasing,
},
{
"CREATE TABLE t1(c0 INT) PARTITION BY HASH((NOT c0)) PARTITIONS 2;",
dbterror.ErrPartitionFunctionIsNotAllowed,
Expand Down
2 changes: 1 addition & 1 deletion ddl/ddl_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -2704,7 +2704,7 @@ func checkTwoRangeColumns(ctx sessionctx.Context, curr, prev *model.PartitionDef
}
for i := 0; i < len(pi.Columns); i++ {
// Special handling for MAXVALUE.
if strings.EqualFold(curr.LessThan[i], partitionMaxValue) {
if strings.EqualFold(curr.LessThan[i], partitionMaxValue) && !strings.EqualFold(prev.LessThan[i], partitionMaxValue) {
// If current is maxvalue, it certainly >= previous.
return true, nil
}
Expand Down

0 comments on commit 7fc6661

Please sign in to comment.