mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
13 lines
130 B
Text
13 lines
130 B
Text
|
set debug= 'T';
|
||
|
select @@debug;
|
||
|
@@debug
|
||
|
T
|
||
|
set debug= '+P';
|
||
|
select @@debug;
|
||
|
@@debug
|
||
|
P:T
|
||
|
set debug= '-P';
|
||
|
select @@debug;
|
||
|
@@debug
|
||
|
T
|