2006-04-07 20:44:37 +03:00
|
|
|
--exec $MYSQL test -e 'show processlist' | grep 'Binlog Dump' | cut -f1 > $MYSQLTEST_VARDIR/tmp/bl_dump_thread_id
|
|
|
|
--disable_warnings
|
|
|
|
drop table if exists t999;
|
|
|
|
--enable_warnings
|
|
|
|
create temporary table t999 (f int);
|
2006-04-08 16:29:11 +03:00
|
|
|
### --replace_result $MYSQL_TEST_DIR "." #failed on solaris etc bug#18906
|
|
|
|
--disable_query_log
|
2006-04-07 20:44:37 +03:00
|
|
|
eval LOAD DATA INFILE "$MYSQLTEST_VARDIR/tmp/bl_dump_thread_id" into table t999;
|
2006-04-08 16:29:11 +03:00
|
|
|
--enable_query_log
|
2006-04-07 20:44:37 +03:00
|
|
|
let $id = `select f from t999`;
|
|
|
|
drop table t999;
|