summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/r/secure_file_priv.result
blob: 74f816df59d880cd613d53d9b040b68f07d59849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# Bug50373 --secure-file-priv=""
#
CREATE TABLE t1 (c1 VARCHAR(50));
INSERT INTO t1 VALUES ("one"),("two"),("three"),("four"),("five");
SHOW VARIABLES LIKE 'secure_file_priv';
Variable_name	Value
secure_file_priv	
Warnings:
Warning	1287	'<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
c1
one
two
three
four
five
loaded_file
one
two
three
four
five

DROP TABLE t1;