~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/loaddata.result

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
set @@secure_file_priv= 0;
212
212
ERROR HY000: Variable 'secure_file_priv' is a read only variable
213
213
truncate table t1;
214
 
load data infile 'MYSQL_TEST_DIR/t/loaddata.test' into table t1;
 
214
load data infile 'DRIZZLE_TEST_DIR/t/loaddata.test' into table t1;
215
215
ERROR HY000: The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
216
216
select * from t1;
217
217
a       b       c
218
 
select load_file("MYSQL_TEST_DIR/t/loaddata.test");
219
 
load_file("MYSQL_TEST_DIR/t/loaddata.test")
 
218
select load_file("DRIZZLE_TEST_DIR/t/loaddata.test");
 
219
load_file("DRIZZLE_TEST_DIR/t/loaddata.test")
220
220
NULL
221
221
drop table t1, t2;
222
222
create table t1(f1 int);