summaryrefslogtreecommitdiff
path: root/mysql-test/include
diff options
context:
space:
mode:
authorunknown <aelkin@mysql.com>2006-04-08 16:29:11 +0300
committerunknown <aelkin@mysql.com>2006-04-08 16:29:11 +0300
commite44359014a3bc5cd2eae77b6f5fa43322d0b1f99 (patch)
tree112c7c81ac00c0b0fb325654dd58ffe03c31fec8 /mysql-test/include
parent67cbda06b9dd5313f77c0d00d19c9cf49fcc11bc (diff)
downloadmariadb-git-e44359014a3bc5cd2eae77b6f5fa43322d0b1f99.tar.gz
#18906: bushbuild reports rpl_temporary fails on solaris, AIX, QNX
Removing the problematic line from include test file. mysql-test/include/get_binlog_dump_thread_id.inc: replacing replace_result by disable_query_log mysql-test/r/rpl_temporary.result: results
Diffstat (limited to 'mysql-test/include')
-rw-r--r--mysql-test/include/get_binlog_dump_thread_id.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/include/get_binlog_dump_thread_id.inc b/mysql-test/include/get_binlog_dump_thread_id.inc
index 9efa12c5611..680807cc3c6 100644
--- a/mysql-test/include/get_binlog_dump_thread_id.inc
+++ b/mysql-test/include/get_binlog_dump_thread_id.inc
@@ -3,7 +3,9 @@
drop table if exists t999;
--enable_warnings
create temporary table t999 (f int);
---replace_result $MYSQL_TEST_DIR "."
+### --replace_result $MYSQL_TEST_DIR "." #failed on solaris etc bug#18906
+--disable_query_log
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;