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.
16 lines
614 B
16 lines
614 B
create table performance_schema.events_statements_histogram_by_digest
|
|
(
|
|
SCHEMA_NAME varchar(64) null,
|
|
DIGEST varchar(64) null,
|
|
BUCKET_NUMBER int unsigned not null,
|
|
BUCKET_TIMER_LOW bigint unsigned not null,
|
|
BUCKET_TIMER_HIGH bigint unsigned not null,
|
|
COUNT_BUCKET bigint unsigned not null,
|
|
COUNT_BUCKET_AND_LOWER bigint unsigned not null,
|
|
BUCKET_QUANTILE double(7, 6) not null,
|
|
constraint SCHEMA_NAME
|
|
unique (SCHEMA_NAME, DIGEST, BUCKET_NUMBER) using hash
|
|
)
|
|
engine = PERFORMANCE_SCHEMA;
|
|
|