You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.4 KiB
30 lines
1.4 KiB
create table performance_schema.file_summary_by_event_name
|
|
(
|
|
EVENT_NAME varchar(128) not null
|
|
primary key using hash,
|
|
COUNT_STAR bigint unsigned not null,
|
|
SUM_TIMER_WAIT bigint unsigned not null,
|
|
MIN_TIMER_WAIT bigint unsigned not null,
|
|
AVG_TIMER_WAIT bigint unsigned not null,
|
|
MAX_TIMER_WAIT bigint unsigned not null,
|
|
COUNT_READ bigint unsigned not null,
|
|
SUM_TIMER_READ bigint unsigned not null,
|
|
MIN_TIMER_READ bigint unsigned not null,
|
|
AVG_TIMER_READ bigint unsigned not null,
|
|
MAX_TIMER_READ bigint unsigned not null,
|
|
SUM_NUMBER_OF_BYTES_READ bigint not null,
|
|
COUNT_WRITE bigint unsigned not null,
|
|
SUM_TIMER_WRITE bigint unsigned not null,
|
|
MIN_TIMER_WRITE bigint unsigned not null,
|
|
AVG_TIMER_WRITE bigint unsigned not null,
|
|
MAX_TIMER_WRITE bigint unsigned not null,
|
|
SUM_NUMBER_OF_BYTES_WRITE bigint not null,
|
|
COUNT_MISC bigint unsigned not null,
|
|
SUM_TIMER_MISC bigint unsigned not null,
|
|
MIN_TIMER_MISC bigint unsigned not null,
|
|
AVG_TIMER_MISC bigint unsigned not null,
|
|
MAX_TIMER_MISC bigint unsigned not null
|
|
)
|
|
engine = PERFORMANCE_SCHEMA;
|
|
|