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

« back to all changes in this revision

Viewing changes to mysql-test/suite/sys_vars/r/named_pipe_basic.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
select @@global.named_pipe;
 
2
@@global.named_pipe
 
3
0
 
4
select @@session.named_pipe;
 
5
ERROR HY000: Variable 'named_pipe' is a GLOBAL variable
 
6
show global variables like 'named_pipe';
 
7
Variable_name   Value
 
8
named_pipe      OFF
 
9
show session variables like 'named_pipe';
 
10
Variable_name   Value
 
11
named_pipe      OFF
 
12
select * from information_schema.global_variables where variable_name='named_pipe';
 
13
VARIABLE_NAME   VARIABLE_VALUE
 
14
NAMED_PIPE      OFF
 
15
select * from information_schema.session_variables where variable_name='named_pipe';
 
16
VARIABLE_NAME   VARIABLE_VALUE
 
17
NAMED_PIPE      OFF
 
18
set global named_pipe=1;
 
19
ERROR HY000: Variable 'named_pipe' is a read only variable
 
20
set session named_pipe=1;
 
21
ERROR HY000: Variable 'named_pipe' is a read only variable