mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
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
This commit is contained in:
@ -3,9 +3,7 @@
|
|||||||
drop table if exists t999;
|
drop table if exists t999;
|
||||||
--enable_warnings
|
--enable_warnings
|
||||||
create temporary table t999 (f int);
|
create temporary table t999 (f int);
|
||||||
### --replace_result $MYSQL_TEST_DIR "." #failed on solaris etc bug#18906
|
--replace_result $MYSQLTEST_VARDIR "."
|
||||||
--disable_query_log
|
|
||||||
eval LOAD DATA INFILE "$MYSQLTEST_VARDIR/tmp/bl_dump_thread_id" into table t999;
|
eval LOAD DATA INFILE "$MYSQLTEST_VARDIR/tmp/bl_dump_thread_id" into table t999;
|
||||||
--enable_query_log
|
|
||||||
let $id = `select f from t999`;
|
let $id = `select f from t999`;
|
||||||
drop table t999;
|
drop table t999;
|
||||||
|
@ -93,6 +93,7 @@ create temporary table t4 (f int);
|
|||||||
create table t5 (f int);
|
create table t5 (f int);
|
||||||
drop table if exists t999;
|
drop table if exists t999;
|
||||||
create temporary table t999 (f int);
|
create temporary table t999 (f int);
|
||||||
|
LOAD DATA INFILE "./tmp/bl_dump_thread_id" into table t999;
|
||||||
drop table t999;
|
drop table t999;
|
||||||
insert into t4 values (1);
|
insert into t4 values (1);
|
||||||
kill `select id from information_schema.processlist where command='Binlog Dump'`;
|
kill `select id from information_schema.processlist where command='Binlog Dump'`;
|
||||||
|
Reference in New Issue
Block a user