~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/loaddata.result

  • Committer: lbieber
  • Date: 2010-10-07 15:39:23 UTC
  • mfrom: (1819.1.2 build)
  • Revision ID: lbieber@orisndriz08-20101007153923-e9rwa9ha5oyhjdc2
Merge Monty - Bug 655294: load_data() function returns null if file is invalid 
Merge Monty - Bug 655342: select into outfile creates a garbage file on no results
Merge Monty - Fixes the haildb build

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
15      NULL    Ten
151
151
show variables like "secure_file_pri%";
152
152
Variable_name   Value
153
 
secure_file_priv        MYSQLTEST_VARDIR/
 
153
secure_file_priv        MYSQLTEST_VARDIR
154
154
select @@secure_file_priv;
155
155
@@secure_file_priv
156
 
MYSQLTEST_VARDIR/
 
156
MYSQLTEST_VARDIR
157
157
set @@secure_file_priv= 0;
158
158
ERROR HY000: Variable 'secure_file_priv' is a read only variable
159
159
truncate table t1;
162
162
select * from t1;
163
163
a       b       c
164
164
select load_file("DRIZZLE_TEST_DIR/t/loaddata.test");
165
 
load_file("DRIZZLE_TEST_DIR/t/loaddata.test")
166
 
NULL
 
165
ERROR HY000: The Drizzle server is running with the --secure-file-priv option so it cannot execute this statement
167
166
drop table t1, t2;
168
167
create table t1(f1 int, f2 timestamp not null default current_timestamp);
169
168
create table t2(f1 int);