mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge 10.6 into 10.11
This commit is contained in:
20
mysql-test/suite/perfschema/r/misc_session_status.result
Normal file
20
mysql-test/suite/perfschema/r/misc_session_status.result
Normal file
@ -0,0 +1,20 @@
|
||||
#
|
||||
# MDEV-33150 double-locking of LOCK_thd_kill in performance_schema.session_status
|
||||
#
|
||||
set @old_innodb_io_capacity=@@global.innodb_io_capacity;
|
||||
set @old_innodb_io_capacity_max=@@global.innodb_io_capacity_max;
|
||||
select * from performance_schema.session_status limit 0;
|
||||
VARIABLE_NAME VARIABLE_VALUE
|
||||
set max_session_mem_used=32768;
|
||||
select * from performance_schema.session_status;
|
||||
ERROR HY000: The MariaDB server is running with the --max-session-mem-used=32768 option so it cannot execute this statement
|
||||
set global innodb_io_capacity_max=100;
|
||||
Warnings:
|
||||
Warning 1210 Setting innodb_io_capacity_max 100 lower than innodb_io_capacity 200.
|
||||
Warning 1210 Setting innodb_io_capacity to 100
|
||||
set max_session_mem_used=default;
|
||||
set global innodb_io_capacity=@old_innodb_io_capacity;
|
||||
Warnings:
|
||||
Warning 1210 Setting innodb_io_capacity to 200 higher than innodb_io_capacity_max 100
|
||||
Warning 1210 Setting innodb_max_io_capacity to 400
|
||||
set global innodb_io_capacity_max=@old_innodb_io_capacity_max;
|
@ -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