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.
|
create table performance_schema.performance_timers
|
|
(
|
|
TIMER_NAME enum ('CYCLE', 'NANOSECOND', 'MICROSECOND', 'MILLISECOND', 'THREAD_CPU') not null,
|
|
TIMER_FREQUENCY bigint null,
|
|
TIMER_RESOLUTION bigint null,
|
|
TIMER_OVERHEAD bigint null
|
|
)
|
|
engine = PERFORMANCE_SCHEMA;
|
|
|