~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/perfschema/t/table_io_aggregate_thread_4u_2t.test

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Tests for the performance schema
 
2
 
 
3
--source ../include/table_aggregate_setup.inc
 
4
 
 
5
# table io
 
6
update performance_schema.setup_instruments
 
7
  set enabled='NO' where name='wait/lock/table/sql/handler';
 
8
 
 
9
# thread
 
10
update performance_schema.setup_consumers
 
11
  set enabled='NO' where name like 'event%';
 
12
 
 
13
# 4users by default
 
14
 
 
15
# 2tables
 
16
delete from performance_schema.setup_objects
 
17
  where object_name='t2';
 
18
 
 
19
--source ../include/table_aggregate_load.inc
 
20
--source ../include/table_aggregate_cleanup.inc
 
21