1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-30 11:22:14 +03:00

Small post-merge fix to partition test

mysql-test/r/partition.result:
  Update results
mysql-test/t/partition.test:
  Add missing drop table
This commit is contained in:
unknown
2006-02-15 17:01:31 -08:00
parent b87e0993f2
commit a7da76f24e
2 changed files with 2 additions and 0 deletions

View File

@@ -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;

View File

@@ -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';
#