mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
Small post-merge fix to partition test
This commit is contained in:
parent
5e6b6c9935
commit
6892c2a52a
2 changed files with 2 additions and 0 deletions
|
@ -305,6 +305,7 @@ create table t1 (f_int1 int(11) default null) engine = memory
|
|||
partition by range (f_int1) subpartition by hash (f_int1)
|
||||
(partition part1 values less than (1000)
|
||||
(subpartition subpart11 engine = memory));
|
||||
drop table t1;
|
||||
set session storage_engine='myisam';
|
||||
create table t1 (f_int1 integer, f_int2 integer, primary key (f_int1))
|
||||
partition by hash(f_int1) partitions 2;
|
||||
|
|
|
@ -389,6 +389,7 @@ create table t1 (f_int1 int(11) default null) engine = memory
|
|||
partition by range (f_int1) subpartition by hash (f_int1)
|
||||
(partition part1 values less than (1000)
|
||||
(subpartition subpart11 engine = memory));
|
||||
drop table t1;
|
||||
set session storage_engine='myisam';
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue