mirror of
https://github.com/MariaDB/server.git
synced 2025-09-06 19:08:06 +03:00
Shorten some VARCHAR attributes to a more reasonable length. INNODB_METRICS: Rename the column STATUS to ENABLED, and make it Boolean. Replace with INT(1) many Boolean attributes that were declared as VARCHAR containing 'NO','YES','disabled','enabled','Uninitialized','Initialized'. Replace some VARCHAR attributes with ENUM. Replace some BIGINT with INT when 32 bits are sufficient. Remove INNODB_SYS_TABLESPACES.SPACE_TYPE. The type of a tablespace can be derived from the tablespace ID. A fixed number is used for the system tablespace and the temporary tablespace. All other tablespaces are single-table or single-partition tablespaces. i_s_locks_row_t::lock_type, lock_get_type_str(): Remove. This is a redundant field. Table and record locks can be distinguished by whether i_s_locks_row_t::lock_index is NULL. fill_trx_row(): Do not unnecessarily copy the constant strings that trx->op_info is pointing to. i_s_locks_row_t::lock_mode: Replace string with integer. lock_get_mode_str(), lock_get_trx_id(), lock_get_trx(): Remove. field_store_ulint(): Remove.
22 lines
928 B
Plaintext
22 lines
928 B
Plaintext
SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_METRICS;
|
|
Table Create Table
|
|
INNODB_METRICS CREATE TEMPORARY TABLE `INNODB_METRICS` (
|
|
`NAME` varchar(193) NOT NULL DEFAULT '',
|
|
`SUBSYSTEM` varchar(193) NOT NULL DEFAULT '',
|
|
`COUNT` bigint(21) NOT NULL DEFAULT 0,
|
|
`MAX_COUNT` bigint(21) DEFAULT NULL,
|
|
`MIN_COUNT` bigint(21) DEFAULT NULL,
|
|
`AVG_COUNT` float DEFAULT NULL,
|
|
`COUNT_RESET` bigint(21) NOT NULL DEFAULT 0,
|
|
`MAX_COUNT_RESET` bigint(21) DEFAULT NULL,
|
|
`MIN_COUNT_RESET` bigint(21) DEFAULT NULL,
|
|
`AVG_COUNT_RESET` float DEFAULT NULL,
|
|
`TIME_ENABLED` datetime DEFAULT NULL,
|
|
`TIME_DISABLED` datetime DEFAULT NULL,
|
|
`TIME_ELAPSED` bigint(21) DEFAULT NULL,
|
|
`TIME_RESET` datetime DEFAULT NULL,
|
|
`ENABLED` int(1) NOT NULL DEFAULT 0,
|
|
`TYPE` enum('value','status_counter','set_owner','set_member','counter') NOT NULL DEFAULT '',
|
|
`COMMENT` varchar(193) NOT NULL DEFAULT ''
|
|
) ENGINE=MEMORY DEFAULT CHARSET=utf8
|