1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug#35701 please allow test language variables in connection and

sync_slave_with_master
 - Additional patch for "disconnect $variable"
This commit is contained in:
Magnus Svensson
2009-01-15 09:05:51 +01:00
parent d20aba9409
commit bb42e1ab05
3 changed files with 36 additions and 16 deletions

View File

@ -2206,6 +2206,14 @@ connection $x;
connection $y;
--echo $CURRENT_CONNECTION
# Disconnect the not selected connection
disconnect $x;
--echo $CURRENT_CONNECTION
# Disconnect the selected connection
disconnect $y;
--echo $CURRENT_CONNECTION
--echo End of tests