diff options
author | unknown <mikael@dator6.(none)> | 2008-01-28 16:11:43 +0100 |
---|---|---|
committer | unknown <mikael@dator6.(none)> | 2008-01-28 16:11:43 +0100 |
commit | 21e654a828fb553a05fa59ce1e24a9360e377835 (patch) | |
tree | 707d30493d0e4ee3632c002bca33023797d17960 /mysql-test/r/partition_range.result | |
parent | 4bacd53715ac860c6ba2d9c148f87d22cae9c62a (diff) | |
download | mariadb-git-21e654a828fb553a05fa59ce1e24a9360e377835.tar.gz |
BUG#33429: No check for maxvalue before adding partition
mysql-test/r/partition_range.result:
Added new test cases
mysql-test/t/partition_range.test:
Added new test cases
sql/sql_partition.cc:
Added check that last partition hasn't got maxvalue defined when
executing ADD PARTITION
Diffstat (limited to 'mysql-test/r/partition_range.result')
-rw-r--r-- | mysql-test/r/partition_range.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/partition_range.result b/mysql-test/r/partition_range.result index 4da79704ec3..bfc67d4947f 100644 --- a/mysql-test/r/partition_range.result +++ b/mysql-test/r/partition_range.result @@ -1,4 +1,15 @@ drop table if exists t1, t2; +create table t1 (a int) +partition by range (a) +( partition p0 values less than (maxvalue)); +alter table t1 add partition (partition p1 values less than (100000)); +ERROR HY000: MAXVALUE can only be used in last partition definition +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` int(11) DEFAULT NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY RANGE (a) (PARTITION p0 VALUES LESS THAN MAXVALUE ENGINE = MyISAM) */ +drop table t1; create table t1 (a int unsigned) partition by range (a) (partition pnull values less than (0), |