~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.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
#
 
2
# Bug50373 --secure-file-priv=""
 
3
#
 
4
CREATE TABLE t1 (c1 VARCHAR(50));
 
5
INSERT INTO t1 VALUES ("one"),("two"),("three"),("four"),("five");
 
6
SHOW VARIABLES LIKE 'secure_file_priv';
 
7
Variable_name   Value
 
8
secure_file_priv        
 
9
c1
 
10
one
 
11
two
 
12
three
 
13
four
 
14
five
 
15
loaded_file
 
16
one
 
17
two
 
18
three
 
19
four
 
20
five
 
21
 
 
22
DROP TABLE t1;