mirror of
https://github.com/MariaDB/server.git
synced 2025-09-11 05:52:26 +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
11 lines
439 B
Plaintext
11 lines
439 B
Plaintext
SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_FT_INDEX_TABLE;
|
|
Table Create Table
|
|
INNODB_FT_INDEX_TABLE CREATE TEMPORARY TABLE `INNODB_FT_INDEX_TABLE` (
|
|
`WORD` varchar(337) NOT NULL,
|
|
`FIRST_DOC_ID` bigint(21) unsigned NOT NULL,
|
|
`LAST_DOC_ID` bigint(21) unsigned NOT NULL,
|
|
`DOC_COUNT` bigint(21) unsigned NOT NULL,
|
|
`DOC_ID` bigint(21) unsigned NOT NULL,
|
|
`POSITION` bigint(21) unsigned NOT NULL
|
|
) ENGINE=MEMORY DEFAULT CHARSET=utf8
|