mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
23 lines
362 B
Plaintext
23 lines
362 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;
|