~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/sys_vars/r/slow_launch_time_func.result

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SET @global_slow_launch_time = @@GLOBAL.slow_launch_time;
 
2
'#--------------------FN_DYNVARS_124_01-------------------------#'
 
3
SET @@GLOBAL.slow_launch_time=0;
 
4
SELECT @@GLOBAL.slow_launch_time;
 
5
@@GLOBAL.slow_launch_time
 
6
0
 
7
** Connecting conn1 using username 'root' **
 
8
SELECT 1;
 
9
1
 
10
1
 
11
** Switch to connection default and disconnect conn1 **
 
12
'#--------------------FN_DYNVARS_124_02-------------------------#'
 
13
SET @@GLOBAL.slow_launch_time= 10000;
 
14
SELECT @@GLOBAL.slow_launch_time;
 
15
@@GLOBAL.slow_launch_time
 
16
10000
 
17
** Connecting conn2 using username 'root' **
 
18
SELECT 1;
 
19
1
 
20
1
 
21
** Switch to connection default and disconnect conn2 **
 
22
SET @@GLOBAL.slow_launch_time = @global_slow_launch_time;