26 lines
814 B
Plaintext
26 lines
814 B
Plaintext
# Tests for PERFORMANCE_SCHEMA
|
|
|
|
--source ../include/start_server_common.inc
|
|
|
|
# Expect no enabled transaction instruments
|
|
select * from performance_schema.setup_instruments
|
|
where name in ('transaction') and enabled='YES';
|
|
|
|
# Expect no transaction statistics collected
|
|
|
|
select * from performance_schema.events_transactions_summary_global_by_event_name
|
|
where count_star > 0;
|
|
|
|
select * from performance_schema.events_transactions_summary_by_thread_by_event_name
|
|
where count_star > 0;
|
|
|
|
select * from performance_schema.events_transactions_summary_by_user_by_event_name
|
|
where count_star > 0;
|
|
|
|
select * from performance_schema.events_transactions_summary_by_host_by_event_name
|
|
where count_star > 0;
|
|
|
|
select * from performance_schema.events_transactions_summary_by_account_by_event_name
|
|
where count_star > 0;
|
|
|