mirror of
https://github.com/MariaDB/server.git
synced 2025-11-27 05:41:41 +03:00
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
8 lines
283 B
Plaintext
8 lines
283 B
Plaintext
SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_SYS_FIELDS;
|
|
Table Create Table
|
|
INNODB_SYS_FIELDS CREATE TEMPORARY TABLE `INNODB_SYS_FIELDS` (
|
|
`INDEX_ID` bigint(21) unsigned NOT NULL,
|
|
`NAME` varchar(64) NOT NULL,
|
|
`POS` int(11) unsigned NOT NULL
|
|
) ENGINE=MEMORY DEFAULT CHARSET=utf8
|