mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
72da83ff99
server failure in different, confusing ways InnoDB fails to free the buffer pool instance mutex and zip mutex If the allocation of buffer pool instance chunk fails. So it leads to freeing of buffer pool before freeing the mutexes and leads to double freeing of memory while freeing the mutex during shutdown.
11 lines
623 B
Text
11 lines
623 B
Text
--source include/have_innodb.inc
|
|
--source include/have_debug.inc
|
|
call mtr.add_suppression("InnoDB: Cannot allocate memory for the buffer pool");
|
|
call mtr.add_suppression("InnoDB: Plugin initialization aborted at srv0start.cc.*");
|
|
call mtr.add_suppression("Plugin 'InnoDB' init function returned error.");
|
|
call mtr.add_suppression("Plugin 'InnoDB' registration as a STORAGE ENGINE failed.");
|
|
--echo #
|
|
--echo # MDEV-25019 memory allocation failures during startup cause server failure in different, confusing ways
|
|
--echo #
|
|
let restart_parameters=--debug_dbug="+d,ib_buf_chunk_init_fails";
|
|
--source include/restart_mysqld.inc
|