summaryrefslogtreecommitdiff
path: root/mysql-test/t/myisam.test
diff options
context:
space:
mode:
authorkostja@bodhi.local <>2006-07-10 14:53:49 +0400
committerkostja@bodhi.local <>2006-07-10 14:53:49 +0400
commitf183c08476ce39bb8e8b82912de1e85ee95ced58 (patch)
treec7605ae201b8239b1b39a7f303e38045dab73e47 /mysql-test/t/myisam.test
parent746749ed7589abad12e8e0c1088354ef4eb6cd45 (diff)
downloadmariadb-git-f183c08476ce39bb8e8b82912de1e85ee95ced58.tar.gz
A post-merge fix (Bug#8706 "temporary table with data directory option
fails"
Diffstat (limited to 'mysql-test/t/myisam.test')
-rw-r--r--mysql-test/t/myisam.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test
index a465a381676..695d0b02b37 100644
--- a/mysql-test/t/myisam.test
+++ b/mysql-test/t/myisam.test
@@ -850,13 +850,13 @@ connect (session2,localhost,root,,);
connection session1;
disable_query_log;
-eval create temporary table t1 (a int) engine=myisam data directory="$MYSQL_TEST_DIR/var/tmp" select 9 a;
+eval create temporary table t1 (a int) engine=myisam data directory="$MYSQLTEST_VARDIR/tmp" select 9 a;
enable_query_log;
show create table t1;
connection session2;
disable_query_log;
-eval create temporary table t1 (a int) engine=myisam data directory="$MYSQL_TEST_DIR/var/tmp" select 99 a;
+eval create temporary table t1 (a int) engine=myisam data directory="$MYSQLTEST_VARDIR/tmp" select 99 a;
enable_query_log;
show create table t1;