From 31a54240e7cc89b6f8ae97b4cd51a8b377f95b91 Mon Sep 17 00:00:00 2001 From: "gluh@eagle.intranet.mysql.r18.ru" <> Date: Thu, 25 May 2006 19:20:35 +0500 Subject: [PATCH] test fix --- mysql-test/r/partition.result | 8 ++++---- mysql-test/t/partition.test | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index 71d4f1bb376..3be9f3edee2 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -890,15 +890,15 @@ s1 2 3 drop table t1; -create table t1 (a int) -partition by key (a) -(partition p0 engine = MERGE); -ERROR HY000: MyISAM Merge handler cannot be used in partitioned tables create table t1 (a int) engine=memory partition by key(a); insert into t1 values (1); create index inx1 on t1(a); drop table t1; +create table t1 (a int) +partition by key (a) +(partition p0 engine = MERGE); +ERROR HY000: MyISAM Merge handler cannot be used in partitioned tables create table t1 (a varchar(1)) partition by key (a) as select 'a'; diff --git a/mysql-test/t/partition.test b/mysql-test/t/partition.test index f697005d6bd..a24124d3fb5 100644 --- a/mysql-test/t/partition.test +++ b/mysql-test/t/partition.test @@ -1076,6 +1076,5 @@ REPAIR TABLE t1; OPTIMIZE TABLE t1; drop table t1; ->>>>>>> --echo End of 5.1 tests