mirror of
https://github.com/MariaDB/server.git
synced 2025-02-07 06:12:18 +01:00
![Sergei Golubchik](/assets/img/avatar_default.png)
* it isn't "pfs" function, don't call it Item_func_pfs, don't use item_pfsfunc.* * tests don't depend on performance schema, put in the main suite * inherit from Item_str_ascii_func * use connection collation, not utf8mb3_general_ci * set result length in fix_length_and_dec * do not set maybe_null * use my_snprintf() where possible * don't set m_value.ptr on every invocation * update sys schema to use the format_pico_time() * len must be size_t (compilation error on Windows) * the correct function name for double->double is fabs() * drop volatile hack
28 lines
1.1 KiB
Text
28 lines
1.1 KiB
Text
DESC sys.schema_index_statistics;
|
|
Field Type Null Key Default Extra
|
|
table_schema varchar(64) YES NULL
|
|
table_name varchar(64) YES NULL
|
|
index_name varchar(64) YES NULL
|
|
rows_selected bigint(20) unsigned NO NULL
|
|
select_latency varchar(12) YES NULL
|
|
rows_inserted bigint(20) unsigned NO NULL
|
|
insert_latency varchar(12) YES NULL
|
|
rows_updated bigint(20) unsigned NO NULL
|
|
update_latency varchar(12) YES NULL
|
|
rows_deleted bigint(20) unsigned NO NULL
|
|
delete_latency varchar(12) YES NULL
|
|
SELECT * FROM sys.schema_index_statistics;
|
|
DESC sys.x$schema_index_statistics;
|
|
Field Type Null Key Default Extra
|
|
table_schema varchar(64) YES NULL
|
|
table_name varchar(64) YES NULL
|
|
index_name varchar(64) YES NULL
|
|
rows_selected bigint(20) unsigned NO NULL
|
|
select_latency bigint(20) unsigned NO NULL
|
|
rows_inserted bigint(20) unsigned NO NULL
|
|
insert_latency bigint(20) unsigned NO NULL
|
|
rows_updated bigint(20) unsigned NO NULL
|
|
update_latency bigint(20) unsigned NO NULL
|
|
rows_deleted bigint(20) unsigned NO NULL
|
|
delete_latency bigint(20) unsigned NO NULL
|
|
SELECT * FROM sys.x$schema_index_statistics;
|