~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/extra/rpl_tests/rpl_stm_000001.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:
3
3
 
4
4
create table t1 (word char(20) not null);
5
5
load data infile '../std_data_ln/words.dat' into table t1;
6
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
7
 
eval load data local infile '$MYSQL_TEST_DIR/std_data/words.dat' into table t1;
 
6
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
 
7
eval load data local infile '$DRIZZLE_TEST_DIR/std_data/words.dat' into table t1;
8
8
select * from t1 limit 10;
9
9
 
10
10
#