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.
13 lines
453 B
13 lines
453 B
create table performance_schema.events_statements_histogram_global
|
|
(
|
|
BUCKET_NUMBER int unsigned not null
|
|
primary key using hash,
|
|
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
|
|
)
|
|
engine = PERFORMANCE_SCHEMA;
|
|
|