Commit f6d40961 authored by unknown's avatar unknown

fixed test case

parent 3e8008b1
...@@ -907,6 +907,11 @@ s1 ...@@ -907,6 +907,11 @@ s1
2 2
3 3
drop table t1; 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) create table t1 (a int)
PARTITION BY KEY (a) PARTITION BY KEY (a)
(PARTITION p0); (PARTITION p0);
...@@ -918,11 +923,6 @@ t1 CREATE TABLE `t1` ( ...@@ -918,11 +923,6 @@ t1 CREATE TABLE `t1` (
) PARTITION BY KEY (a) (PARTITION p0) ) PARTITION BY KEY (a) (PARTITION p0)
set session sql_mode=''; set session sql_mode='';
drop table t1; 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) create table t1 (a int)
partition by key (a) partition by key (a)
(partition p1 engine = innodb); (partition p1 engine = innodb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment