mirror of
https://github.com/MariaDB/server.git
synced 2025-11-19 19:03:26 +03:00
- ensure that mtr supressions table is flushed before doing controlled crash and restart - use DBUG_SUICIDE() rather than abort() in partition tests - avoids a crash message/warning - disable perfschema all_instances test on Windows- there are legitimate reasons for output to be different on Unix (some different threads, some different locks), the differences are expected to grow in the future, e.g with threadpool.
25 lines
754 B
Plaintext
25 lines
754 B
Plaintext
--source include/not_embedded.inc
|
|
--source include/have_perfschema.inc
|
|
--source include/have_maria.inc
|
|
--source include/have_archive.inc
|
|
--source include/have_blackhole.inc
|
|
--source include/have_ssl.inc
|
|
--source include/not_windows.inc
|
|
|
|
use performance_schema;
|
|
|
|
#
|
|
# list all instances of everything.
|
|
#
|
|
|
|
#
|
|
# "group by" sorts and removes duplicates.
|
|
# "where" filters out instances that can be conditionally compiled out
|
|
#
|
|
|
|
select name from mutex_instances where name not rlike '/(DEBUG_SYNC::mutex)$' group by name;
|
|
select name from rwlock_instances group by name;
|
|
select name from cond_instances where name not rlike '/(DEBUG_SYNC::cond)$' group by name;
|
|
select event_name from file_instances group by event_name;
|
|
select name from threads group by name;
|