mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
5009ab856d
from 6.0 to trunk-bugfixing.
22 lines
362 B
Text
22 lines
362 B
Text
--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;
|