mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-24167: Stabilize perfschema.sxlock_func
The extension of the test perfschema.sxlock_func in
commit 1669c8890c
turned out to be unstable.
Let us filter out purge_sys.latch (trx_purge_latch) from the output,
because it might happen that the purge tasks will not be executed
during the test execution.
This commit is contained in:
@ -45,7 +45,9 @@ drop table t1;
|
||||
|
||||
SELECT DISTINCT event_name FROM performance_schema.events_waits_history_long
|
||||
WHERE event_name LIKE 'wait/synch/rwlock/innodb/%'
|
||||
AND event_name!='wait/synch/rwlock/innodb/btr_search_latch'
|
||||
AND event_name NOT IN
|
||||
('wait/synch/rwlock/innodb/btr_search_latch',
|
||||
'wait/synch/rwlock/innodb/trx_purge_latch')
|
||||
ORDER BY event_name;
|
||||
|
||||
# Make sure some shared_lock operations have been executed
|
||||
|
Reference in New Issue
Block a user