~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/outfile.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:
91
91
#
92
92
# It should not be possible to write to a file outside of vardir
93
93
create table t1(a int);
94
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
 
94
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
95
95
--error 1290
96
 
eval select * into outfile "$MYSQL_TEST_DIR/outfile-test1" from t1;
 
96
eval select * into outfile "$DRIZZLE_TEST_DIR/outfile-test1" from t1;
97
97
drop table t1;
98
98
 
99
99
#