diff options
author | msvensson@neptunus.(none) <> | 2006-01-24 08:30:54 +0100 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-01-24 08:30:54 +0100 |
commit | 09ec2919a1f7b2ef65623ecf62014210f7d74fac (patch) | |
tree | 3deb5d61360e5dc82c59792348fac9fabfc410ef /mysql-test/t/blackhole.test | |
parent | 8dce5e198d069079f5fc2b614e003082ce303b2e (diff) | |
download | mariadb-git-09ec2919a1f7b2ef65623ecf62014210f7d74fac.tar.gz |
Make it possible to run mysql-test-run.pl with default test suite in different vardir.
Diffstat (limited to 'mysql-test/t/blackhole.test')
-rw-r--r-- | mysql-test/t/blackhole.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/blackhole.test b/mysql-test/t/blackhole.test index 257770d311c..ce26d2447eb 100644 --- a/mysql-test/t/blackhole.test +++ b/mysql-test/t/blackhole.test @@ -108,7 +108,7 @@ insert into t1 values(1); insert ignore into t1 values(1); replace into t1 values(100); create table t2 (a varchar(200)) engine=blackhole; -load data infile '../../std_data/words.dat' into table t2; +load data infile '../std_data_ln/words.dat' into table t2; alter table t1 add b int; alter table t1 drop b; create table t3 like t1; |