diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index dce1e1969f2..fa1baaec07e 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -27,6 +27,7 @@ select * from t1 where (a + 1) > 10; a 18446744073709551613 18446744073709551614 +drop table t1; create table t1 (a int) engine = csv partition by list (a) diff --git a/mysql-test/r/partition_range.result b/mysql-test/r/partition_range.result index ff17abe0ffb..152f91f0887 100644 --- a/mysql-test/r/partition_range.result +++ b/mysql-test/r/partition_range.result @@ -389,6 +389,7 @@ t1 CREATE TABLE `t1` ( ) ENGINE=MyISAM DEFAULT CHARSET=latin1 PARTITION BY RANGE (a) (PARTITION p0 VALUES LESS THAN (2) ENGINE = MyISAM, PARTITION p1 VALUES LESS THAN (10) ENGINE = MyISAM) insert into t1 values (0xFFFFFFFFFFFFFFFF); ERROR HY000: Table has no partition for value 18446744073709551615 +drop table t1; create table t1 (a int) partition by range (MOD(a,3)) subpartition by hash(a) diff --git a/mysql-test/t/partition_range.test b/mysql-test/t/partition_range.test index 5c1c17dc511..8e1e2e72e69 100644 --- a/mysql-test/t/partition_range.test +++ b/mysql-test/t/partition_range.test @@ -411,6 +411,7 @@ partition by range (a) show create table t1; --error ER_NO_PARTITION_FOR_GIVEN_VALUE insert into t1 values (0xFFFFFFFFFFFFFFFF); +drop table t1; # # BUG 18962 Errors in DROP PARTITION