mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
2ccf247e93
* rename all debugging related command-line options and variables to start from "debug-", and made them all OFF by default. * replace "MySQL" with "MariaDB" in error messages * "Cast ... converted ... integer to it's ... complement" is now a note, not a warning * @@query_cache_strip_comments now has a session scope, not global.
6 lines
350 B
Text
6 lines
350 B
Text
CREATE TABLE t1 (c1 INT);
|
|
LOAD DATA INFILE "t1.MYI" into table t1;
|
|
ERROR HY000: The MariaDB server is running with the --secure-file-priv option so it cannot execute this statement
|
|
LOAD DATA INFILE "/test" into table t1;
|
|
ERROR HY000: The MariaDB server is running with the --secure-file-priv option so it cannot execute this statement
|
|
DROP TABLE t1;
|