2008-04-10 15:14:28 +02:00
|
|
|
SET @global_slow_launch_time = @@GLOBAL.slow_launch_time;
|
|
|
|
** Connection default **
|
2008-10-02 15:41:59 +02:00
|
|
|
'#--------------------FN_DYNVARS_124_01-------------------------#'
|
2008-04-10 15:14:28 +02:00
|
|
|
SET @@GLOBAL.slow_launch_time=0;
|
|
|
|
SELECT @@GLOBAL.slow_launch_time;
|
|
|
|
@@GLOBAL.slow_launch_time
|
|
|
|
0
|
2008-10-02 15:41:59 +02:00
|
|
|
** Connecting conn1 using username 'root' **
|
|
|
|
** Switch to connection default and disconnect conn1 **
|
|
|
|
'#--------------------FN_DYNVARS_124_02-------------------------#'
|
|
|
|
SET @@GLOBAL.slow_launch_time= 1000;
|
|
|
|
SELECT @@GLOBAL.slow_launch_time;
|
|
|
|
@@GLOBAL.slow_launch_time
|
|
|
|
1000
|
|
|
|
** Connecting conn2 using username 'root' **
|
|
|
|
** Switch to connection default and disconnect conn2 **
|
2008-04-10 15:14:28 +02:00
|
|
|
SET @@GLOBAL.slow_launch_time = @global_slow_launch_time;
|