From d710ccf82c12e8751a16cd7f5a3a01451658c383 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 8 Sep 2006 03:18:05 -0400 Subject: Rearranged test cases, move InnoDB test cases to partition_innodb --- mysql-test/t/partition.test | 37 ------------------------------------- 1 file changed, 37 deletions(-) (limited to 'mysql-test/t/partition.test') diff --git a/mysql-test/t/partition.test b/mysql-test/t/partition.test index 532a63b0d24..96c4d4a4b1d 100644 --- a/mysql-test/t/partition.test +++ b/mysql-test/t/partition.test @@ -42,27 +42,6 @@ create table t1 (a int) partition by key(a) partitions 1e+300; -# -# Bug 21173: SHOW TABLE STATUS crashes server in InnoDB -# -create table t1 (a int) -engine = innodb -partition by key (a); -show table status; -insert into t1 values (0), (1), (2), (3); -show table status; -drop table t1; - -create table t1 (a int auto_increment primary key) -engine = innodb -partition by key (a); -show table status; -insert into t1 values (NULL), (NULL), (NULL), (NULL); -show table status; -insert into t1 values (NULL), (NULL), (NULL), (NULL); -show table status; -drop table t1; - # # Bug 21350: Data Directory problems # @@ -1193,22 +1172,6 @@ show create table t1; set session sql_mode=''; drop table t1; -# -# BUG 19122 Crash after ALTER TABLE t1 REBUILD PARTITION p1 -# -create table t1 (a int) -partition by key (a) -(partition p1 engine = innodb); - -alter table t1 rebuild partition p1; -alter table t1 rebuild partition p1; -alter table t1 rebuild partition p1; -alter table t1 rebuild partition p1; -alter table t1 rebuild partition p1; -alter table t1 rebuild partition p1; -alter table t1 rebuild partition p1; -drop table t1; - # # BUG 19304 Partitions: MERGE handler not allowed in partitioned tables # -- cgit v1.2.1