mirror of
https://github.com/MariaDB/server.git
synced 2025-07-20 10:24:14 +03:00
slave_list was used to provide data for SHOW SLAVE HOSTS and Slaves_connected status variable. Introduced binlog_dump_thread_count which is exposed via Slaves_connected (replaces slave_list.records). Store Slave_info on THD and access it by iterating server_threads (replaces slave_list). Added: THD::slave_info binlog_dump_thread_count show_slave_hosts_callback() Removed: slave_list SLAVE_LIST_CHUNK SLAVE_ERRMSG_SIZE slave_list_key() slave_info_free() init_slave_list() end_slave_list() all_slave_list_mutexes init_all_slave_list_mutexes() key_LOCK_slave_list LOCK_slave_list Moved: SLAVE_INFO -> Slave_info register_slave() -> THD::register_slave() unregister_slave() -> THD::unregister_slave() Also removed redundant end_slave() from close_connections(): it is called again soon afterwards by clean_up(). Pre-requisite for clean MDEV-18450 solution.
171 lines
5.7 KiB
Plaintext
171 lines
5.7 KiB
Plaintext
# Tests for PERFORMANCE_SCHEMA
|
|
|
|
--source include/not_embedded.inc
|
|
--source include/have_perfschema.inc
|
|
|
|
# This test verifies that the mysys and server instruments are properly
|
|
# initialized and recorded by the performance schema during the bootstrap
|
|
# sequence in mysqld main().
|
|
# Note that some globals mutexes/rwlocks/conds that depend on #ifdef options
|
|
# or runtime options are not tested here, to have a predictable result.
|
|
|
|
use performance_schema;
|
|
|
|
# Verify that these global mutexes have been properly initilized in mysys
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/mysys/THR_LOCK_threads";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/mysys/THR_LOCK_malloc";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/mysys/THR_LOCK_open";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/mysys/THR_LOCK_myisam";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/mysys/THR_LOCK_heap";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/mysys/THR_LOCK_net";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/mysys/THR_LOCK_charset";
|
|
|
|
# There are no global rwlock in mysys
|
|
|
|
# Verify that these global conditions have been properly initilized in mysys
|
|
|
|
select count(name) from cond_instances
|
|
where name like "wait/synch/cond/mysys/THR_COND_threads";
|
|
|
|
# Verify that these global mutexes have been properly initilized in sql
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_thread_count";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_log_throttle_qni";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_status";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_error_log";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_delayed_insert";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_uuid_generator";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_delayed_status";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_delayed_create";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_crypt";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_active_mi";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_manager";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_global_system_variables";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_user_conn";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_prepared_stmt_count";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_connection_count";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_server_started";
|
|
|
|
# LOG_INFO object are created on demand, and are not global.
|
|
# select count(name) from mutex_instances
|
|
# where name like "wait/synch/mutex/sql/LOG_INFO::lock";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/Query_cache::structure_guard_mutex";
|
|
|
|
# The event scheduler may be disabled
|
|
# select count(name) from mutex_instances
|
|
# where name like "wait/synch/mutex/sql/Event_scheduler::LOCK_scheduler_state";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_event_queue";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_user_locks";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/Cversion_lock";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_audit_mask";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/LOCK_plugin";
|
|
|
|
# Not a global variable, may be destroyed already.
|
|
# select count(name) from mutex_instances
|
|
# where name like "wait/synch/mutex/sql/LOCK_gdl";
|
|
|
|
select count(name) from mutex_instances
|
|
where name like "wait/synch/mutex/sql/tz_LOCK";
|
|
|
|
# Verify that these global rwlocks have been properly initilized in sql
|
|
|
|
select count(name) from rwlock_instances
|
|
where name like "wait/synch/rwlock/sql/LOCK_grant";
|
|
|
|
select count(name) from rwlock_instances
|
|
where name like "wait/synch/rwlock/sql/LOCK_sys_init_connect";
|
|
|
|
select count(name) from rwlock_instances
|
|
where name like "wait/synch/rwlock/sql/LOCK_sys_init_slave";
|
|
|
|
select count(name) from rwlock_instances
|
|
where name like "wait/synch/rwlock/sql/LOCK_system_variables_hash";
|
|
|
|
# Verify that these global conditions have been properly initilized in sql
|
|
|
|
select count(name) from cond_instances
|
|
where name like "wait/synch/cond/sql/COND_server_started";
|
|
|
|
select count(name) from cond_instances
|
|
where name like "wait/synch/cond/sql/COND_refresh";
|
|
|
|
select count(name) from cond_instances
|
|
where name like "wait/synch/cond/sql/COND_thread_count";
|
|
|
|
select count(name) from cond_instances
|
|
where name like "wait/synch/cond/sql/COND_manager";
|
|
|
|
select count(name) from cond_instances
|
|
where name like "wait/synch/cond/sql/COND_thread_cache";
|
|
|
|
select count(name) from cond_instances
|
|
where name like "wait/synch/cond/sql/COND_flush_thread_cache";
|
|
|
|
select count(name) from cond_instances
|
|
where name like "wait/synch/cond/sql/Query_cache::COND_cache_status_changed";
|
|
|
|
# The event scheduler may be disabled
|
|
# select count(name) from cond_instances
|
|
# where name like "wait/synch/cond/sql/Event_scheduler::COND_state";
|
|
|
|
select count(name) from cond_instances
|
|
where name like "wait/synch/cond/sql/COND_queue_state";
|
|
|