1#
2# Bug #34283  mysqlbinlog leaves tmpfile after termination
3# if binlog contains load data infile, so in mixed mode we
4# go to row-based for avoiding the problem.
5#
6
7--source include/have_binlog_format_mixed.inc
8--source include/have_log_bin.inc
9
10RESET MASTER;
11CREATE TABLE t1 (word CHAR(20) NOT NULL) ENGINE=MYISAM;
12let $binlog_start= query_get_value(SHOW MASTER STATUS, Position, 1);
13LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1;
14--source include/show_binlog_events.inc
15DROP TABLE t1;
16