mirror of
https://github.com/MariaDB/server.git
synced 2025-02-05 13:22:17 +01:00
504cfa4857
The test with memory restrictions randomly works or fails in buildbot depending on server configurations. On my machine the original test worked. As the test was there to just check if the server crashes when run with small memory configurations, I disabled testing if the query would fail or not. The test still has its original purpose. Discussed with: Sergei Golubchik <serg@mariadb.org>
19 lines
853 B
Text
19 lines
853 B
Text
#
|
|
# 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;
|
|
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;
|