1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Backport test cases for Bug#46198 and Bug#38054

from 6.0 to trunk-bugfixing.
This commit is contained in:
Alexander Nozdrin
2010-05-19 16:31:18 +04:00
parent b530d5660e
commit 796fd24e15
4 changed files with 82 additions and 0 deletions

View File

@ -10,3 +10,13 @@ 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;