mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
5.6.43
This commit is contained in:
@ -16,7 +16,9 @@ wait/synch/mutex/sql/LOCK_crypt YES YES
|
|||||||
wait/synch/mutex/sql/LOCK_delayed_create YES YES
|
wait/synch/mutex/sql/LOCK_delayed_create YES YES
|
||||||
select * from performance_schema.setup_instruments
|
select * from performance_schema.setup_instruments
|
||||||
where name like 'Wait/Synch/Rwlock/sql/%'
|
where name like 'Wait/Synch/Rwlock/sql/%'
|
||||||
and name not in ('wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock')
|
and name not in (
|
||||||
|
'wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock',
|
||||||
|
'wait/synch/rwlock/sql/LOCK_named_pipe_full_access_group')
|
||||||
order by name limit 10;
|
order by name limit 10;
|
||||||
NAME ENABLED TIMED
|
NAME ENABLED TIMED
|
||||||
wait/synch/rwlock/sql/Binlog_relay_IO_delegate::lock YES YES
|
wait/synch/rwlock/sql/Binlog_relay_IO_delegate::lock YES YES
|
||||||
|
@ -22,10 +22,13 @@ select * from performance_schema.setup_instruments
|
|||||||
order by name limit 10;
|
order by name limit 10;
|
||||||
|
|
||||||
# CRYPTO_dynlock_value::lock is dependent on the build (SSL)
|
# CRYPTO_dynlock_value::lock is dependent on the build (SSL)
|
||||||
|
# LOCK_named_pipe_full_access_group is dependent on the build (Windows)
|
||||||
|
|
||||||
select * from performance_schema.setup_instruments
|
select * from performance_schema.setup_instruments
|
||||||
where name like 'Wait/Synch/Rwlock/sql/%'
|
where name like 'Wait/Synch/Rwlock/sql/%'
|
||||||
and name not in ('wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock')
|
and name not in (
|
||||||
|
'wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock',
|
||||||
|
'wait/synch/rwlock/sql/LOCK_named_pipe_full_access_group')
|
||||||
order by name limit 10;
|
order by name limit 10;
|
||||||
|
|
||||||
# COND_handler_count is dependent on the build (Windows only)
|
# COND_handler_count is dependent on the build (Windows only)
|
||||||
|
Reference in New Issue
Block a user