mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
fixed test case
This commit is contained in:
parent
3e8008b13e
commit
f6d409613d
1 changed files with 5 additions and 5 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue