mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
Merge 10.5 into 10.6
This commit is contained in:
@@ -5,11 +5,7 @@ TRUNCATE TABLE performance_schema.events_waits_history_long;
|
||||
TRUNCATE TABLE performance_schema.events_waits_history;
|
||||
TRUNCATE TABLE performance_schema.events_waits_current;
|
||||
select name from performance_schema.setup_instruments
|
||||
where name like "wait/synch/sxlock/%"
|
||||
and name not in
|
||||
("wait/synch/sxlock/innodb/buf_block_lock",
|
||||
"wait/synch/sxlock/innodb/buf_block_debug_latch")
|
||||
order by name;
|
||||
where name like "wait/synch/sxlock/%" order by name;
|
||||
name
|
||||
wait/synch/sxlock/innodb/btr_search_latch
|
||||
wait/synch/sxlock/innodb/dict_operation_lock
|
||||
|
@@ -9,6 +9,8 @@
|
||||
# event, which changes the test output.
|
||||
--source include/not_windows.inc
|
||||
--source include/no_protocol.inc
|
||||
# Work around MDEV-24232: WSREP causes extra operations on LOCK_thd_data etc.
|
||||
--source include/have_wsrep.inc
|
||||
--source ../include/wait_for_pfs_thread_count.inc
|
||||
|
||||
--disable_query_log
|
||||
|
@@ -16,13 +16,8 @@ TRUNCATE TABLE performance_schema.events_waits_history;
|
||||
TRUNCATE TABLE performance_schema.events_waits_current;
|
||||
|
||||
# Check some SX-locks classes are instrumented
|
||||
# (exclude instruments that depend on compiling options)
|
||||
select name from performance_schema.setup_instruments
|
||||
where name like "wait/synch/sxlock/%"
|
||||
and name not in
|
||||
("wait/synch/sxlock/innodb/buf_block_lock",
|
||||
"wait/synch/sxlock/innodb/buf_block_debug_latch")
|
||||
order by name;
|
||||
where name like "wait/synch/sxlock/%" order by name;
|
||||
|
||||
# Check some SX-locks instances are instrumented
|
||||
select name from performance_schema.rwlock_instances
|
||||
|
Reference in New Issue
Block a user