innodb_table_stats
This page is part of MariaDB's SkySQL Documentation.
The parent of this page is: System Tables for MariaDB Enterprise Server
Topics on this page:
Overview
Statistics collected on InnoDB tables.
See also: System Tables for MariaDB Enterprise Server 10.6, in 10.5 ES, and in 10.4 ES
DETAILS
SCHEMA
CREATE TABLE `innodb_table_stats` (
`database_name` varchar(64) COLLATE utf8mb3_bin NOT NULL,
`table_name` varchar(199) COLLATE utf8mb3_bin NOT NULL,
`last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`n_rows` bigint(20) unsigned NOT NULL,
`clustered_index_size` bigint(20) unsigned NOT NULL,
`sum_of_other_index_sizes` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`database_name`,`table_name`)
)
CHANGE HISTORY
Release Series | History |
---|---|
10.6 Enterprise |
|
10.5 Enterprise |
|
10.4 Enterprise |
|
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.
This page shows information specific to MariaDB SkySQL. Information for non-SkySQL use can be found on the innodb_
table_ .stats page in the MariaDB Enterprise Documentation