mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
P_S 5.7.28
This commit is contained in:
@ -21,13 +21,13 @@ AND enabled = 'yes' AND timed = 'no'
|
||||
ORDER BY name;
|
||||
|
||||
SELECT * FROM performance_schema.setup_instruments
|
||||
WHERE name = 'wait/synch/mutex/sql/LOCK_thread_count'
|
||||
WHERE name = 'wait/synch/mutex/sql/LOCK_thd_list'
|
||||
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')
|
||||
'wait/synch/mutex/sql/THD::LOCK_thd_list')
|
||||
AND enabled = 'yes' AND timed = 'yes'
|
||||
ORDER BY name;
|
||||
|
||||
@ -36,6 +36,21 @@ WHERE name = 'wait/synch/mutex/sql/hash_filo::lock'
|
||||
AND enabled = 'no' AND timed = 'no'
|
||||
ORDER BY name;
|
||||
|
||||
--echo #
|
||||
--echo # Verify that the memory instruments are never timed
|
||||
--echo #
|
||||
SELECT * FROM performance_schema.setup_instruments
|
||||
WHERE name like 'memory/%'
|
||||
AND timed = 'YES';
|
||||
|
||||
--echo #
|
||||
--echo # Verify that the memory/performance_schema instruments are never disabled
|
||||
--echo #
|
||||
SELECT * FROM performance_schema.setup_instruments
|
||||
WHERE name like 'memory/performance_schema/%'
|
||||
AND enabled = 'NO';
|
||||
|
||||
|
||||
--echo #
|
||||
--echo # Verify that the instrument startup settings are not not visible.
|
||||
--echo #
|
||||
|
Reference in New Issue
Block a user