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

« back to all changes in this revision

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