diff options
-rw-r--r-- | mysql-test/r/rpl000001.result | 2 | ||||
-rw-r--r-- | mysql-test/t/rpl000001.test | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/rpl000001.result b/mysql-test/r/rpl000001.result index 5299ff1f8d0..918f68275fb 100644 --- a/mysql-test/r/rpl000001.result +++ b/mysql-test/r/rpl000001.result @@ -7,7 +7,7 @@ use test; drop table if exists t1,t3; create table t1 (word char(20) not null); load data infile '../../std_data/words.dat' into table t1; - load data local infile '/home/sasha/bk/mysql-4.0/mysql-test/std_data/words.dat' into table t1; + load data local infile '$MYSQL_TEST_DIR/std_data/words.dat' into table t1; select * from t1; word Aarhus diff --git a/mysql-test/t/rpl000001.test b/mysql-test/t/rpl000001.test index 3ed5daf3e81..7ce14cc9f55 100644 --- a/mysql-test/t/rpl000001.test +++ b/mysql-test/t/rpl000001.test @@ -1,3 +1,4 @@ +eval_result; source include/master-slave.inc; connection master; use test; |