mirror of
https://github.com/MariaDB/server.git
synced 2025-02-12 00:15:35 +01:00
![Monty](/assets/img/avatar_default.png)
This was done after discussions with Igor, Sanja and Bar. The main reason for removing the deprication was to ensure that MariaDB is always backward compatible whenever possible. Other things: - Added statistics counters, mainly for the feedback plugin. - INTO OUTFILE - INTO variable - If INTO is using the old syntax (end of query)
22 lines
295 B
Text
22 lines
295 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
|
|
c1
|
|
one
|
|
two
|
|
three
|
|
four
|
|
five
|
|
loaded_file
|
|
one
|
|
two
|
|
three
|
|
four
|
|
five
|
|
|
|
DROP TABLE t1;
|