stop slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; reset master; reset slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; start slave; create table t2 (id int not null primary key auto_increment); show variables like 'max_allowed_packet' /* 8K */; Variable_name Value max_allowed_packet 7168 show variables like 'read_buffer_size' /* 9K */; Variable_name Value read_buffer_size 8228 load data infile 'MYSQLTEST_VARDIR/tmp/bug30435_5k.txt' into table t2; select count(*) from t2 /* 5 000 */; count(*) 5000 show binlog events in 'master-bin.000002' from 98; Log_name Pos Event_type Server_id End_log_pos Info master-bin.000002 98 Query 1 # use `test`; create table t2 (id int not null primary key auto_increment) master-bin.000002 221 Begin_load_query 1 # ;file_id=1;block_len=7168 master-bin.000002 7412 Append_block 1 # ;file_id=1;block_len=7168 master-bin.000002 14603 Append_block 1 # ;file_id=1;block_len=2048 master-bin.000002 16674 Append_block 1 # ;file_id=1;block_len=7168 master-bin.000002 23865 Append_block 1 # ;file_id=1;block_len=341 master-bin.000002 24229 Execute_load_query 1 # use `test`; load data infile 'MYSQLTEST_VARDIR/tmp/bug30435_5k.txt' into table t2 ;file_id=1 select count(*) from t2 /* 5 000 */; count(*) 5000 drop table t1, t2; end of the tests