summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/t/rpl_binlog_query_filter_rules.test
blob: d56a32ce2bda3a1e87091231637e434746b339bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# regression test for
# Bug#36099 replicate-do-db affects replaying RBR events with mysqlbinlog
# The test verifies that the slave side filtering rule does not affect
# applying of row-events on master via mysqlbinlog

-- source include/have_log_bin.inc
-- source include/not_embedded.inc
-- source include/have_binlog_format_row.inc

--disable_warnings
drop table if exists t1;
--enable_warnings

reset master;

create table t1 (a int);
insert into t1 values (1);

let $MYSQLD_DATADIR= `select @@datadir`;
flush logs;
--exec $MYSQL_BINLOG  $MYSQLD_DATADIR/master-bin.000001 > $MYSQLTEST_VARDIR/tmp/bug36099.sql

drop table t1;
--exec $MYSQL -e "source $MYSQLTEST_VARDIR/tmp/bug36099.sql"

--echo *** must be 1 ***
select * from t1;

# cleanup

drop table t1;
remove_file $MYSQLTEST_VARDIR/tmp/bug36099.sql;