mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
24 lines
484 B
Text
24 lines
484 B
Text
#
|
|
# 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;
|