mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
35 lines
842 B
Text
35 lines
842 B
Text
|
#
|
||
|
# Checks that assigning variable 'debug' in one session has no influence on
|
||
|
# other session. (BUG#45632 of bugs.mysql.com)
|
||
|
#
|
||
|
# (this will not work with embedded server because mysqltest_embedded uses the
|
||
|
# same thread for all connections)
|
||
|
#
|
||
|
--source include/have_debug.inc
|
||
|
--source include/not_embedded.inc
|
||
|
|
||
|
connect(con1,localhost,root,,test,,);
|
||
|
connect(con2,localhost,root,,test,,);
|
||
|
|
||
|
# makes output independant of current debug status
|
||
|
connection con1;
|
||
|
set session debug="t";
|
||
|
show session variables like 'debug';
|
||
|
connection con2;
|
||
|
set session debug="t";
|
||
|
show session variables like 'debug';
|
||
|
|
||
|
# checks influence one session debug variable on another
|
||
|
connection con1;
|
||
|
set session debug="d:t";
|
||
|
show session variables like 'debug';
|
||
|
connection con2;
|
||
|
show session variables like 'debug';
|
||
|
|
||
|
disconnect con1;
|
||
|
disconnect con2;
|
||
|
|
||
|
connection default;
|
||
|
|
||
|
|