2007-12-15 12:50:23 +01:00
|
|
|
# Test case for bug#32205 Replaying statements from mysqlbinlog fails
|
|
|
|
# with a syntax error, replicates fine
|
|
|
|
|
2008-01-31 12:17:40 +01:00
|
|
|
source include/have_log_bin.inc;
|
|
|
|
source include/have_local_infile.inc;
|
|
|
|
|
2007-12-18 08:43:51 +01:00
|
|
|
reset master;
|
2007-12-15 12:50:23 +01:00
|
|
|
--disable_warnings
|
|
|
|
drop table if exists t1,t2;
|
|
|
|
--enable_warnings
|
|
|
|
create table t1 (word varchar(20)) -- create table t1;
|
|
|
|
create table t2 (word varchar(20)) -- create table t2;
|
|
|
|
load data infile '../std_data_ln/words.dat' into table t1 -- load data to t1;
|
|
|
|
insert into t2 values ("Ada");
|
|
|
|
flush logs;
|
|
|
|
select * from t2;
|
2008-02-01 13:18:27 +01:00
|
|
|
--exec $MYSQL_BINLOG --short-form --local-load=$MYSQLTEST_VARDIR/tmp/ $MYSQLTEST_VARDIR/log/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/binlog_start_comment.binlog
|
2008-02-01 10:46:02 +01:00
|
|
|
--exec $MYSQL --local-infile=1 < $MYSQLTEST_VARDIR/tmp/binlog_start_comment.binlog
|
2007-12-15 12:50:23 +01:00
|
|
|
flush logs;
|
|
|
|
select * from t2;
|
2007-12-18 08:43:51 +01:00
|
|
|
|
|
|
|
# clean up
|
|
|
|
drop table t1,t2;
|
2008-01-31 12:17:40 +01:00
|
|
|
#--system rm $MYSQLTEST_VARDIR/tmp/binlog_start_comment.binlog
|