1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# Tests for the performance schema
--source ../include/table_aggregate_setup.inc
# table io
update performance_schema.setup_instruments
set enabled='NO' where name='wait/lock/table/sql/handler';
# global
update performance_schema.setup_consumers
set enabled='NO' where name='thread_instrumentation';
# 2users
delete from performance_schema.setup_actors
where user in ('user2', 'user4');
# 2tables
delete from performance_schema.setup_objects
where object_name='t2';
--source ../include/table_aggregate_load.inc
--source ../include/table_aggregate_cleanup.inc
|