mirror of
https://github.com/MariaDB/server.git
synced 2025-09-08 06:27:57 +03:00
This patch changes the main name of 3 byte character set from utf8 to utf8mb3. New old_mode UTF8_IS_UTF8MB3 is added and set TRUE by default, so that utf8 would mean utf8mb3. If not set, utf8 would mean utf8mb4.
13 lines
593 B
Plaintext
13 lines
593 B
Plaintext
SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_SYS_TABLES;
|
|
Table Create Table
|
|
INNODB_SYS_TABLES CREATE TEMPORARY TABLE `INNODB_SYS_TABLES` (
|
|
`TABLE_ID` bigint(21) unsigned NOT NULL DEFAULT 0,
|
|
`NAME` varchar(655) NOT NULL DEFAULT '',
|
|
`FLAG` int(11) NOT NULL DEFAULT 0,
|
|
`N_COLS` int(11) unsigned NOT NULL DEFAULT 0,
|
|
`SPACE` int(11) unsigned NOT NULL DEFAULT 0,
|
|
`ROW_FORMAT` enum('Redundant','Compact','Compressed','Dynamic') DEFAULT NULL,
|
|
`ZIP_PAGE_SIZE` int(11) unsigned NOT NULL DEFAULT 0,
|
|
`SPACE_TYPE` enum('Single','System') DEFAULT NULL
|
|
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb3
|