1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-06 19:08:06 +03:00
Files
mariadb/mysql-test/suite/innodb_i_s/innodb_buffer_pool_stats.result
Marko Mäkelä d09aec7a15 MDEV-19940 Clean up INFORMATION_SCHEMA.INNODB_ tables
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.
2019-07-04 00:09:16 +03:00

37 lines
2.1 KiB
Plaintext

SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_BUFFER_POOL_STATS;
Table Create Table
INNODB_BUFFER_POOL_STATS CREATE TEMPORARY TABLE `INNODB_BUFFER_POOL_STATS` (
`POOL_ID` int(11) unsigned NOT NULL DEFAULT 0,
`POOL_SIZE` bigint(21) unsigned NOT NULL DEFAULT 0,
`FREE_BUFFERS` bigint(21) unsigned NOT NULL DEFAULT 0,
`DATABASE_PAGES` bigint(21) unsigned NOT NULL DEFAULT 0,
`OLD_DATABASE_PAGES` bigint(21) unsigned NOT NULL DEFAULT 0,
`MODIFIED_DATABASE_PAGES` bigint(21) unsigned NOT NULL DEFAULT 0,
`PENDING_DECOMPRESS` bigint(21) unsigned NOT NULL DEFAULT 0,
`PENDING_READS` bigint(21) unsigned NOT NULL DEFAULT 0,
`PENDING_FLUSH_LRU` bigint(21) unsigned NOT NULL DEFAULT 0,
`PENDING_FLUSH_LIST` bigint(21) unsigned NOT NULL DEFAULT 0,
`PAGES_MADE_YOUNG` bigint(21) unsigned NOT NULL DEFAULT 0,
`PAGES_NOT_MADE_YOUNG` bigint(21) unsigned NOT NULL DEFAULT 0,
`PAGES_MADE_YOUNG_RATE` float NOT NULL DEFAULT 0,
`PAGES_MADE_NOT_YOUNG_RATE` float NOT NULL DEFAULT 0,
`NUMBER_PAGES_READ` bigint(21) unsigned NOT NULL DEFAULT 0,
`NUMBER_PAGES_CREATED` bigint(21) unsigned NOT NULL DEFAULT 0,
`NUMBER_PAGES_WRITTEN` bigint(21) unsigned NOT NULL DEFAULT 0,
`PAGES_READ_RATE` float NOT NULL DEFAULT 0,
`PAGES_CREATE_RATE` float NOT NULL DEFAULT 0,
`PAGES_WRITTEN_RATE` float NOT NULL DEFAULT 0,
`NUMBER_PAGES_GET` bigint(21) unsigned NOT NULL DEFAULT 0,
`HIT_RATE` bigint(21) unsigned NOT NULL DEFAULT 0,
`YOUNG_MAKE_PER_THOUSAND_GETS` bigint(21) unsigned NOT NULL DEFAULT 0,
`NOT_YOUNG_MAKE_PER_THOUSAND_GETS` bigint(21) unsigned NOT NULL DEFAULT 0,
`NUMBER_PAGES_READ_AHEAD` bigint(21) unsigned NOT NULL DEFAULT 0,
`NUMBER_READ_AHEAD_EVICTED` bigint(21) unsigned NOT NULL DEFAULT 0,
`READ_AHEAD_RATE` float NOT NULL DEFAULT 0,
`READ_AHEAD_EVICTED_RATE` float NOT NULL DEFAULT 0,
`LRU_IO_TOTAL` bigint(21) unsigned NOT NULL DEFAULT 0,
`LRU_IO_CURRENT` bigint(21) unsigned NOT NULL DEFAULT 0,
`UNCOMPRESS_TOTAL` bigint(21) unsigned NOT NULL DEFAULT 0,
`UNCOMPRESS_CURRENT` bigint(21) unsigned NOT NULL DEFAULT 0
) ENGINE=MEMORY DEFAULT CHARSET=utf8