WL#4445: EXCHANGE PARTITION WITH TABLE

Affects: Server-5.6   —   Status: Complete

Import/Export tables to/from partitioned tables or be able to exchange a
partition with a table.

Proposed SQL syntax:

ALTER TABLE t1 EXCHANGE PARTITION p1 WITH TABLE t2 [IGNORE]

Where t1 is a partitioned table which includes partition p1 and t2 is a non
partitioned table with the same definition as t1.

Which will if the table definitions match and if IGNORE was not given, check
that all rows in t2 would match the constrains on p1

exchange places of table t2 and partition p1 in table t1.

This single command would also be useful for importing (i.e. data in t2) or
exporting (data in p1) partitions.

Example:
Exporting a partition would be:
create table t2 like t1;
(possibly take lock on t2 and t1)
alter table t2 remove partitioning;
alter table t1 exchange partition p1 with table t2;
alter table t1 drop partition p1;
(if locked, unlock tables)


It should also be possible to exchange subpartitions with the proposed syntax
(i.e. no need to explicitly use SUBPARTITION). Note that if the table is
subpartitioned, it is ONLY possible to exchange subpartition, since a partition
includes one or more subpartitions and is not exchangable with a table.

Also see BUG#31585.