diff options
author | unknown <aelkin@mysql.com> | 2006-04-09 13:27:53 +0300 |
---|---|---|
committer | unknown <aelkin@mysql.com> | 2006-04-09 13:27:53 +0300 |
commit | 9f7215d61b52d0b52ed744d0ce0eb5af9724b883 (patch) | |
tree | dcb79c603afc9d001c9830464deb45c46fcf593c /mysql-test/include | |
parent | 6051eb31b564006addca0f15cfe0d3a9699b8c8d (diff) | |
download | mariadb-git-9f7215d61b52d0b52ed744d0ce0eb5af9724b883.tar.gz |
BUG#18906 Test case rpl_temporary fails when using --vardir option
env variable name is fixed.
mysql-test/include/get_binlog_dump_thread_id.inc:
Fixing to right env $var name.
mysql-test/r/rpl_temporary.result:
results
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/get_binlog_dump_thread_id.inc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mysql-test/include/get_binlog_dump_thread_id.inc b/mysql-test/include/get_binlog_dump_thread_id.inc index 680807cc3c6..830a88b5db6 100644 --- a/mysql-test/include/get_binlog_dump_thread_id.inc +++ b/mysql-test/include/get_binlog_dump_thread_id.inc @@ -3,9 +3,7 @@ drop table if exists t999; --enable_warnings create temporary table t999 (f int); -### --replace_result $MYSQL_TEST_DIR "." #failed on solaris etc bug#18906 ---disable_query_log +--replace_result $MYSQLTEST_VARDIR "." eval LOAD DATA INFILE "$MYSQLTEST_VARDIR/tmp/bl_dump_thread_id" into table t999; ---enable_query_log let $id = `select f from t999`; drop table t999; |