mirror of
https://github.com/MariaDB/server.git
synced 2025-04-28 06:45:23 +03:00
Server crashes on 64bit linux with 'double free or corruption' message, on 32bit mysql-test-run silently fails on bootstrap stage. The problem is that FreeState() is called twice for init_settings struct in _db_end_ function. The fix is to remove superfluous FreeState() call. Additional fix: fixed discrepancy of result file when debug & valgrind options are enabled for MTR.
29 lines
501 B
Plaintext
29 lines
501 B
Plaintext
--source include/have_debug.inc
|
|
|
|
SET @old_debug = @@GLOBAL.debug;
|
|
|
|
#
|
|
# Bug#34678 @@debug variable's incremental mode
|
|
#
|
|
|
|
set debug= 'T';
|
|
select @@debug;
|
|
set debug= '+P';
|
|
select @@debug;
|
|
set debug= '-P';
|
|
select @@debug;
|
|
|
|
--echo #
|
|
--echo # Bug #52629: memory leak from sys_var_thd_dbug in
|
|
--echo # binlog.binlog_write_error
|
|
--echo #
|
|
|
|
SET GLOBAL debug='d,injecting_fault_writing';
|
|
SELECT @@global.debug;
|
|
SET GLOBAL debug='';
|
|
SELECT @@global.debug;
|
|
|
|
SET GLOBAL debug=@old_debug;
|
|
|
|
--echo End of 5.1 tests
|