summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/t/setup_instruments_defaults.test
blob: b84b082c48405817563831f658128bdcc9327151 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Tests for PERFORMANCE_SCHEMA

--source include/not_embedded.inc
--source include/have_perfschema.inc

# Verify that the configuration options were applied correctly to the
# setup_instruments table. These instruments that are known to persist across
# platforms and the various compile options.

SELECT * FROM performance_schema.setup_instruments
WHERE name IN (
  'wait/synch/mutex/sql/LOCK_user_conn',
  'wait/synch/mutex/sql/LOCK_uuid_generator',
  'wait/synch/mutex/sql/LOCK_xid_cache'
  'stage/sql/creating table')
AND enabled = 'yes' AND timed = 'no'
ORDER BY name;

SELECT * FROM performance_schema.setup_instruments
WHERE name = 'wait/synch/mutex/sql/LOCK_thread_count'
AND enabled = 'no' AND timed = 'no';

SELECT * FROM performance_schema.setup_instruments
WHERE name IN (
  'wait/synch/mutex/sql/LOG_INFO::lock',
  'wait/synch/mutex/sql/THD::LOCK_thd_data')
AND enabled = 'yes' AND timed = 'yes'
ORDER BY name;

SELECT * FROM performance_schema.setup_instruments
WHERE name IN (
  'wait/synch/mutex/sql/Delayed_insert::mutex',
  'wait/synch/mutex/sql/hash_filo::lock')
AND enabled = 'no' AND timed = 'no'
ORDER BY name;

#
# Verify that the instrument startup settings are not not visible.
#
SHOW VARIABLES LIKE "%/wait/synch/mutex%";