diff options
author | unknown <mikael@c-0409e253.1238-1-64736c10.cust.bredbandsbolaget.se> | 2006-06-12 17:30:32 -0400 |
---|---|---|
committer | unknown <mikael@c-0409e253.1238-1-64736c10.cust.bredbandsbolaget.se> | 2006-06-12 17:30:32 -0400 |
commit | 14c0751c30c4f495bddbd0aefe2787897b806fa5 (patch) | |
tree | 81efea84f25fb7793496f32545aea40d703a199b /mysql-test/r/partition.result | |
parent | 93cde729c0c57d50283d8602332af22ebbc26110 (diff) | |
download | mariadb-git-14c0751c30c4f495bddbd0aefe2787897b806fa5.tar.gz |
BUG#19122: Need to close all handlers before rename/drop phase in ALTER TABLE ADD/DROP/REORGANIZE partitions
After review fix
mysql-test/r/partition.result:
Fixes for test
mysql-test/t/partition.test:
Fixes for test
sql/lock.cc:
After review fix
sql/mysql_priv.h:
After review fix
sql/sql_partition.cc:
After review fix
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r-- | mysql-test/r/partition.result | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index 8bf86056e24..967e30104cf 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -890,6 +890,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 p1 engine = innodb); @@ -900,10 +905,6 @@ alter table t1 rebuild partition p1; alter table t1 rebuild partition p1; alter table t1 rebuild partition p1; alter table t1 rebuild partition p1; -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) |