mirror of
https://github.com/MariaDB/server.git
synced 2025-05-10 02:01:19 +03:00
Conflicts: - mysql-test/r/partition.result - mysql-test/r/variables_debug.result - mysql-test/t/partition.test - mysql-test/t/variables_debug.test
36 lines
616 B
Plaintext
36 lines
616 B
Plaintext
--source include/have_debug.inc
|
|
|
|
#
|
|
# Bug#34678 @@debug variable's incremental mode
|
|
#
|
|
|
|
set debug= 'T';
|
|
select @@debug;
|
|
set debug= '+P';
|
|
select @@debug;
|
|
set debug= '-P';
|
|
select @@debug;
|
|
|
|
#
|
|
# Bug#38054: "SET SESSION debug" modifies @@global.debug variable
|
|
#
|
|
|
|
SELECT @@session.debug, @@global.debug;
|
|
|
|
SET SESSION debug = '';
|
|
|
|
SELECT @@session.debug, @@global.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;
|
|
|
|
|
|
--echo End of 5.1 tests
|