Commit bfa22229 authored by unknown's avatar unknown
Browse files

Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0

into mysql.com:/home/mysql_src/mysql-4.0

parents 48260e9d 601bdde5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -18,4 +18,5 @@ select * from t1;
n
1
1
stop slave;
drop table t1;
+4 −0
Original line number Diff line number Diff line
@@ -18,4 +18,8 @@ insert into t1 values (1);
save_master_pos;
sync_with_master;
select * from t1; # check that indeed 2 were inserted
# We stop the slave before cleaning up otherwise we'll get
# 'drop table t1' executed twice, so an error in the slave.err
# (not critical).
stop slave;
drop table t1;
+3 −3
Original line number Diff line number Diff line
@@ -2366,9 +2366,9 @@ static int exec_relay_log_event(THD* thd, RELAY_LOG_INFO* rli)
    */

    /*
      TODO: when this is merged into 4.1, one needs to update queue_event() to
      add a similar test for replicate_same_server_id, because in 4.1 the I/O
      thread is also filtering events based on the server id.
      In 4.1, we updated queue_event() to add a similar test for
      replicate_same_server_id, because in 4.1 the I/O thread is also filtering
      events based on the server id.
    */
    if ((ev->server_id == (uint32) ::server_id && !replicate_same_server_id) ||
	(rli->slave_skip_counter && type_code != ROTATE_EVENT))