mirror of
https://github.com/MariaDB/server.git
synced 2025-07-24 19:42:23 +03:00
MDEV-33031 Assertion failure upon reading from performance schema with binlog enabled
need to protect access to thread-local cache_mngr with LOCK_thd_data technically only access from different threads has to be protected, but this is the SHOW STATUS code path, so the difference is neglectable
This commit is contained in:
@ -58,4 +58,10 @@ select NAME, TYPE, PROCESSLIST_COMMAND, PROCESSLIST_STATE
|
||||
from performance_schema.threads
|
||||
where PROCESSLIST_ID = @slave_sql_pid;
|
||||
NAME TYPE PROCESSLIST_COMMAND PROCESSLIST_STATE
|
||||
#
|
||||
# MDEV-33031 Assertion failure upon reading from performance schema with binlog enabled
|
||||
#
|
||||
select variable_name, variable_value from performance_schema.status_by_thread
|
||||
where variable_name like '%impossible%';
|
||||
variable_name variable_value
|
||||
include/rpl_end.inc
|
||||
|
Reference in New Issue
Block a user