From 9d332ef794dac4267616068c59b319d060fda8e9 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 7 Jul 2006 00:18:01 +0200 Subject: [PATCH] removed alter table partition error test since it cannot be made predictable... name will change of created file --- mysql-test/r/ndb_restore.result | 19 ------------------- mysql-test/t/ndb_restore.test | 24 ------------------------ 2 files changed, 43 deletions(-) diff --git a/mysql-test/r/ndb_restore.result b/mysql-test/r/ndb_restore.result index 7a84ddd6ef0..b946d97bea1 100644 --- a/mysql-test/r/ndb_restore.result +++ b/mysql-test/r/ndb_restore.result @@ -240,25 +240,6 @@ a 1 2 3 -ALTER TABLE t1_c -PARTITION BY RANGE (`capgoaledatta`) -(PARTITION p0 VALUES LESS THAN MAXVALUE); -ERROR HY000: Can't create table 'test.#sql-2a5b_3' (errno: 138) -ALTER TABLE t2_c -PARTITION BY LIST(`capgotod`) -(PARTITION p0 VALUES IN (0,1,2,3,4,5,6)); -ERROR HY000: Can't create table 'test.#sql-2a5b_3' (errno: 138) -ALTER TABLE t3_c -PARTITION BY HASH (`CapGoaledatta`); -ERROR HY000: Can't create table 'test.#sql-2a5b_3' (errno: 138) -ALTER TABLE t5_c -PARTITION BY HASH (`capfa`) -PARTITIONS 4; -ERROR HY000: Can't create table 'test.#sql-2a5b_3' (errno: 138) -ALTER TABLE t6_c -PARTITION BY LINEAR HASH (`relatta`) -PARTITIONS 4; -ERROR HY000: Can't create table 'test.#sql-2a5b_3' (errno: 138) ALTER TABLE t7_c PARTITION BY LINEAR KEY (`dardtestard`); CREATE TEMPORARY TABLE IF NOT EXISTS test.backup_info (id INT, backup_id INT) ENGINE = HEAP; diff --git a/mysql-test/t/ndb_restore.test b/mysql-test/t/ndb_restore.test index c465a3d7b92..9030dfbe304 100644 --- a/mysql-test/t/ndb_restore.test +++ b/mysql-test/t/ndb_restore.test @@ -219,30 +219,6 @@ select * from t10_c order by a; # # Try Partitioned tables as well # ---error 1005 -ALTER TABLE t1_c -PARTITION BY RANGE (`capgoaledatta`) -(PARTITION p0 VALUES LESS THAN MAXVALUE); - ---error 1005 -ALTER TABLE t2_c -PARTITION BY LIST(`capgotod`) -(PARTITION p0 VALUES IN (0,1,2,3,4,5,6)); - ---error 1005 -ALTER TABLE t3_c -PARTITION BY HASH (`CapGoaledatta`); - ---error 1005 -ALTER TABLE t5_c -PARTITION BY HASH (`capfa`) -PARTITIONS 4; - ---error 1005 -ALTER TABLE t6_c -PARTITION BY LINEAR HASH (`relatta`) -PARTITIONS 4; - ALTER TABLE t7_c PARTITION BY LINEAR KEY (`dardtestard`);