WL#6867: Support transportable tablespaces for partitioned innodb tables

Affects: Server-Prototype Only   —   Status: Complete

Transportable tablespaces does not support partitioned tables, so one have to
use EXCHANGE PARTITION WITH TABLE to be able to import/discard tablespaces for
partitions/whole partitioned tables.

This WL is to support:
FLUSH TABLES partitioned_innodb_table FOR EXPORT; -- So it will flush all the
partitions tablespaces and create .cfg files for each .ibd file.
ALTER TABLE partitioned_innodb_table DISCARD TABLESPACE; -- Will remove all
partitions .ibd files.
ALTER TABLE partitioned_innodb_table IMPORT TABLESPACE; -- Will attach all
partitions .ibd files.

By supporting partitioned tables it will ease the backup procedure for
partitioned innodb tables, and also make it possible for MEB to make use of
Transportable Tablespaces (which is does for non partitioned innodb tables).

Also it will allow copying tablespaces between instances.

Using EXCHANGE PARTITION is not very practical when handling many partitions,
this would increase the usability and remove the need of special treatment of
partitioned innodb tables.

Related bugs:
BUG#70196: DISCARD/IMPORT tablespace is not supported for partitioned InnoDB tables
BUG#71784: discard/import tablespace for partitioned table - Including a
contribution that basically is the same code change for 5.6!