~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/outfile.test

  • Committer: Brian Aker
  • Date: 2008-07-06 15:03:34 UTC
  • Revision ID: brian@tangent.org-20080706150334-xv3xa202trvs0712
USE_RAID cleanup, along with ftbench tools.

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 $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
 
94
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
95
95
--error 1290
96
 
eval select * into outfile "$DRIZZLE_TEST_DIR/outfile-test1" from t1;
 
96
eval select * into outfile "$MYSQL_TEST_DIR/outfile-test1" from t1;
97
97
drop table t1;
98
98
 
99
99
#