summaryrefslogtreecommitdiff
path: root/mysql-test/t/myisam-system.test
diff options
context:
space:
mode:
authorMikael Ronstrom <mikael@mysql.com>2009-02-17 13:24:09 +0100
committerMikael Ronstrom <mikael@mysql.com>2009-02-17 13:24:09 +0100
commitdd9119be20709267f7603c581ce53fbe9f96259c (patch)
tree8414a0bf16f74515368a6a4ebc7ea528e8f982a2 /mysql-test/t/myisam-system.test
parent92e572e86c8a3c1c87f9c44565412ff966a96d97 (diff)
parent1f18af1acb41c32680e57d64cd29053721d5e533 (diff)
downloadmariadb-git-dd9119be20709267f7603c581ce53fbe9f96259c.tar.gz
Merged Performance Version 0.2.1 with latest 5.1 tree (last push 11 feb 14.01.13 2009)
Diffstat (limited to 'mysql-test/t/myisam-system.test')
-rw-r--r--mysql-test/t/myisam-system.test7
1 files changed, 4 insertions, 3 deletions
diff --git a/mysql-test/t/myisam-system.test b/mysql-test/t/myisam-system.test
index c4a7651ac7d..dc5bb58b6a2 100644
--- a/mysql-test/t/myisam-system.test
+++ b/mysql-test/t/myisam-system.test
@@ -7,14 +7,15 @@ drop table if exists t1,t2;
--enable_warnings
create table t1 (a int) engine=myisam;
---remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYI
+let $MYSQLD_DATADIR= `select @@datadir`;
+--remove_file $MYSQLD_DATADIR/test/t1.MYI
drop table if exists t1;
create table t1 (a int) engine=myisam;
---remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYI
+--remove_file $MYSQLD_DATADIR/test/t1.MYI
--error 1051,6
drop table t1;
create table t1 (a int) engine=myisam;
---remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYD
+--remove_file $MYSQLD_DATADIR/test/t1.MYD
--error 1105,6,29
drop table t1;
--error 1051