mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +03:00
24 lines
632 B
Plaintext
24 lines
632 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
|
|
|
|
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 group by name;
|
|
select name from rwlock_instances group by name;
|
|
select name from cond_instances group by name;
|
|
select event_name from file_instances group by event_name;
|
|
select name from threads group by name;
|