~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/loaddata.result

  • Committer: Monty Taylor
  • Date: 2008-07-05 22:08:52 UTC
  • mto: This revision was merged to the branch mainline in revision 77.
  • Revision ID: monty@inaugust.com-20080705220852-cqd9t6tfkhvlcf73
Removed HAVE_LONG_LONG, as this is now assumed.

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 'DRIZZLE_TEST_DIR/t/loaddata.test' into table t1;
 
214
load data infile 'MYSQL_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("DRIZZLE_TEST_DIR/t/loaddata.test");
219
 
load_file("DRIZZLE_TEST_DIR/t/loaddata.test")
 
218
select load_file("MYSQL_TEST_DIR/t/loaddata.test");
 
219
load_file("MYSQL_TEST_DIR/t/loaddata.test")
220
220
NULL
221
221
drop table t1, t2;
222
222
create table t1(f1 int);