mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
28 lines
965 B
Text
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;
|
|
|