~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/loaddata.test

  • 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:
162
162
 
163
163
# Test "load data"
164
164
truncate table t1;
165
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
 
165
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
166
166
--error 1290
167
 
eval load data infile '$MYSQL_TEST_DIR/t/loaddata.test' into table t1;
 
167
eval load data infile '$DRIZZLE_TEST_DIR/t/loaddata.test' into table t1;
168
168
select * from t1;
169
169
 
170
170
# Test "load_file" returns NULL
171
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
172
 
eval select load_file("$MYSQL_TEST_DIR/t/loaddata.test");
 
171
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
 
172
eval select load_file("$DRIZZLE_TEST_DIR/t/loaddata.test");
173
173
 
174
174
# cleanup
175
175
drop table t1, t2;