From f6d409613dd3598ef20816aa53909e49a69d5ea3 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 13 Jun 2006 11:32:07 -0400 Subject: [PATCH] fixed test case --- mysql-test/r/partition.result | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index f08414df5d6..3753dc2fac5 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -907,6 +907,11 @@ s1 2 3 drop table t1; +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); @@ -918,11 +923,6 @@ t1 CREATE TABLE `t1` ( ) PARTITION BY KEY (a) (PARTITION p0) set session sql_mode=''; drop table t1; -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 p1 engine = innodb);