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
33 lines
573 B
Plaintext
33 lines
573 B
Plaintext
set debug= 'T';
|
|
select @@debug;
|
|
@@debug
|
|
T
|
|
set debug= '+P';
|
|
select @@debug;
|
|
@@debug
|
|
P:T
|
|
set debug= '-P';
|
|
select @@debug;
|
|
@@debug
|
|
T
|
|
SELECT @@session.debug, @@global.debug;
|
|
@@session.debug @@global.debug
|
|
T
|
|
SET SESSION debug = '';
|
|
SELECT @@session.debug, @@global.debug;
|
|
@@session.debug @@global.debug
|
|
|
|
#
|
|
# Bug #52629: memory leak from sys_var_thd_dbug in
|
|
# binlog.binlog_write_error
|
|
#
|
|
SET GLOBAL debug='d,injecting_fault_writing';
|
|
SELECT @@global.debug;
|
|
@@global.debug
|
|
d,injecting_fault_writing
|
|
SET GLOBAL debug='';
|
|
SELECT @@global.debug;
|
|
@@global.debug
|
|
|
|
End of 5.1 tests
|