1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-27 05:41:41 +03:00
Files
mariadb/mysql-test/suite/innodb_i_s/innodb_sys_tables.result
Alexander Barkov 62e320c86d MDEV-18918 SQL mode EMPTY_STRING_IS_NULL breaks RBR upon CREATE TABLE .. SELECT
The 10.5 version of the patch.

Removing DEFAULT from INFORMATION_SCHEMA columns.
DEFAULT in read-only tables is rather meaningless.
Upgrade should go smoothly.

Also fixes:
 MDEV-20254 Problems with EMPTY_STRING_IS_NULL and I_S tables
2022-01-25 10:31:55 +04:00

13 lines
503 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,
`NAME` varchar(655) NOT NULL,
`FLAG` int(11) NOT NULL,
`N_COLS` int(11) unsigned NOT NULL,
`SPACE` int(11) unsigned NOT NULL,
`ROW_FORMAT` enum('Redundant','Compact','Compressed','Dynamic'),
`ZIP_PAGE_SIZE` int(11) unsigned NOT NULL,
`SPACE_TYPE` enum('Single','System')
) ENGINE=MEMORY DEFAULT CHARSET=utf8