WL#7053: InnoDB: Provide storage for tablespace dictionary

Affects: Server-8.0   —   Status: Complete

Introduction
------------------------------------------------------------------------
This worklog is about providing transactional storage for serialized data
dictionary information within persistent InnoDB tablespaces. The data dictionary
will be stored in all InnoDB tablespaces that contain
persistent data dictionary objects, except in the Data Dictionary Tablespace.

Definitions
------------------------------------------------------------------------
Shared Tablespace
 A tablespace that can contain multiple tables.

User Tablespace
 A tablespace created by an SQL command that contains user created data
 and that uses an extension '.ibd'.

Single Table User Tablespace:
 A User Tablespace which is created for a single table in a CREATE TABLE
 command when innodb_file_per_table=ON.  

Shared User Tablespace:
 A User Tablespace that can contain multiple tables and is created with
 CREATE TABLESPACE.  In future releases they could contain
 separate indexes and off-page columns.

System Tablespace:
 This tablespace is the default location of user tables as well as all other
 InnoDB system page types.  The first data file in this tablespace is called
 'ibdata1' by default.

Data Dictionary Tablespace:
 A shared tablespace where the data dictionary tables are stored.
 This may be different from the system tablespace.

Shared Temporary Tablespace:
 A tablespace containing temporary data. This tablespace is streamlined for
 performance so it is not redo logged, not covered by persistent undo logs,
 and is not linked to a persistent data dictionary. Since temporary tables
 are not persistent, temporary tablespaces will not contain serialized
 dictionary information.

Undo Log Tablespace:
 A persistent or transient tablespace that contains undo log pages.
 As these do not contain any data dictionary items, they do not contain
 serialized dictionary information either.

Tablespace object:
 Currently, a tablespace object describes a complete table but
 in the future, we could;
 * Allow off-page columns such as blobs to be stored in a separate
   tablespace than the clustered index leaf pages.
 * Allow a secondary index to be stored separate from the clustered
   primary data records.

SDI
 Serialized Dictionary Information - The BLOB record that this worklog
 provides storage for.

Background
------------------------------------------------------------------------
Currently, InnoDB stores all dictionary information in the system tablespace
(eg ibdata1). There is no dictionary information in the user tablespace
(eg t1.ibd, t2.ibd etc).

InnoDB user tablespaces do not contain any metadata that would allow it to
interpret the contents of the user tablespace, or to detect mismatch with the
data dictionary (residing in system tablespace) when opening the user tablespace.

Purpose
-------------------------------------------------------------------------
The reasons for providing an API and a storage location for serialized
dictionary information are as follows:

* Make tablespaces (single-table and shared tablespaces) self descriptive.
* Provides redundancy (one copy in the Global DD tablespace, multiple copies
  in tablespaces containing the data).
* Server core can validate the tablespace dictionary to detect mismatches.
* External tools can dump the tablespace dictionary.