mariadb/mysql-test/suite/perfschema/t/start_server_disable_idle.test
2012-08-14 17:23:34 +03:00

28 lines
965 B
Text

# Tests for PERFORMANCE_SCHEMA
--source include/not_embedded.inc
--source include/have_perfschema.inc
--source ../include/start_server_common.inc
# Expect no enabled idle instruments
select * from performance_schema.setup_instruments
where name like "idle" and enabled='YES';
# Expect no idle statistics collected
select * from performance_schema.events_waits_summary_global_by_event_name
where event_name like "idle" and count_star > 0;
select * from performance_schema.events_waits_summary_by_thread_by_event_name
where event_name like "idle" and count_star > 0;
select * from performance_schema.events_waits_summary_by_user_by_event_name
where event_name like "idle" and count_star > 0;
select * from performance_schema.events_waits_summary_by_host_by_event_name
where event_name like "idle" and count_star > 0;
select * from performance_schema.events_waits_summary_by_account_by_event_name
where event_name like "idle" and count_star > 0;