1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

P_S 5.7.28

This commit is contained in:
Sergei Golubchik
2019-12-10 15:35:00 +01:00
parent dfe6e914e5
commit 0ea717f51a
942 changed files with 174739 additions and 20780 deletions

View File

@ -5,26 +5,43 @@ SELECT * FROM performance_schema.setup_instruments
WHERE name IN (
'wait/synch/mutex/sql/LOCK_user_conn',
'wait/synch/mutex/sql/LOCK_uuid_generator',
<<<<<<< HEAD
'wait/synch/mutex/sql/LOCK_plugin',
=======
'wait/synch/mutex/sql/LOCK_transaction_cache',
>>>>>>> merge-perfschema-5.7
'stage/sql/creating table')
AND enabled = 'yes' AND timed = 'no'
ORDER BY name;
NAME ENABLED TIMED
<<<<<<< HEAD
stage/sql/Creating table YES NO
=======
stage/sql/creating table YES NO
<<<<<<< HEAD
>>>>>>> 258e16fa2de... WIP 5.7 P_S
wait/synch/mutex/sql/LOCK_plugin YES NO
wait/synch/mutex/sql/LOCK_user_conn YES NO
=======
wait/synch/mutex/sql/LOCK_transaction_cache YES NO
wait/synch/mutex/sql/LOCK_user_conn YES NO
wait/synch/mutex/sql/LOCK_uuid_generator YES NO
>>>>>>> merge-perfschema-5.7
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';
NAME ENABLED TIMED
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;
NAME ENABLED TIMED
<<<<<<< HEAD
wait/synch/mutex/sql/THD::LOCK_thd_data YES YES
=======
>>>>>>> 258e16fa2de... WIP 5.7 P_S
SELECT * FROM performance_schema.setup_instruments
WHERE name = 'wait/synch/mutex/sql/hash_filo::lock'
AND enabled = 'no' AND timed = 'no'
@ -32,6 +49,20 @@ ORDER BY name;
NAME ENABLED TIMED
wait/synch/mutex/sql/hash_filo::lock NO NO
#
# Verify that the memory instruments are never timed
#
SELECT * FROM performance_schema.setup_instruments
WHERE name like 'memory/%'
AND timed = 'YES';
NAME ENABLED TIMED
#
# Verify that the memory/performance_schema instruments are never disabled
#
SELECT * FROM performance_schema.setup_instruments
WHERE name like 'memory/performance_schema/%'
AND enabled = 'NO';
NAME ENABLED TIMED
#
# Verify that the instrument startup settings are not not visible.
#
SHOW VARIABLES LIKE "%/wait/synch/mutex%";