diff options
Diffstat (limited to 'mysql-test/t/blackhole.test')
-rw-r--r-- | mysql-test/t/blackhole.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/blackhole.test b/mysql-test/t/blackhole.test index 257770d311c..e40b84eb5cd 100644 --- a/mysql-test/t/blackhole.test +++ b/mysql-test/t/blackhole.test @@ -2,6 +2,7 @@ # Simple test for blackhole example # Taken from the select test # +-- source include/not_embedded.inc -- source include/have_blackhole.inc --disable_warnings @@ -108,7 +109,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; |