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.
YZWL/IDEA/performance_schema/socket_summary_by_instance.sql

35 lines
1.5 KiB

create table performance_schema.socket_summary_by_instance
(
EVENT_NAME varchar(128) not null,
OBJECT_INSTANCE_BEGIN bigint unsigned 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 unsigned 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 unsigned 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;
create index EVENT_NAME
on performance_schema.socket_summary_by_instance (EVENT_NAME)
using hash;