Current Path : /home/usr.opt/mysql57/mysql-test/suite/auth_sec/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/auth_sec/r/secure_file_priv_null.result |
#----------------------------------------------------------------------- # Setup #----------------------------------------------------------------------- # Search for : --secure-file-priv is set to NULL. Operations # related to importing and exporting data are # disabled show variables like 'secure_file_priv'; Variable_name Value secure_file_priv null use test; drop table if exists secure_file_priv_test_null; create table secure_file_priv_test_null(c1 int); insert into secure_file_priv_test_null values (1), (2), (3), (4); select * from secure_file_priv_test_null into outfile 'blah'; ERROR HY000: The MySQL server is running with the --secure-file-priv option so it cannot execute this statement select * from secure_file_priv_test_null into outfile 'null/blah'; ERROR HY000: The MySQL server is running with the --secure-file-priv option so it cannot execute this statement drop table secure_file_priv_test_null; #----------------------------------------------------------------------- # Clean-up #-----------------------------------------------------------------------