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
13 lines
481 B
Plaintext
13 lines
481 B
Plaintext
SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_CMP_PER_INDEX;
|
|
Table Create Table
|
|
INNODB_CMP_PER_INDEX CREATE TEMPORARY TABLE `INNODB_CMP_PER_INDEX` (
|
|
`database_name` varchar(64) NOT NULL,
|
|
`table_name` varchar(64) NOT NULL,
|
|
`index_name` varchar(64) NOT NULL,
|
|
`compress_ops` int(11) NOT NULL,
|
|
`compress_ops_ok` int(11) NOT NULL,
|
|
`compress_time` int(11) NOT NULL,
|
|
`uncompress_ops` int(11) NOT NULL,
|
|
`uncompress_time` int(11) NOT NULL
|
|
) ENGINE=MEMORY DEFAULT CHARSET=utf8
|