mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#28170 replicate-ignore-db=mysql should not ignore mysql.ndb_apply_status
- Add test case --- Bug#28170 replicate-ignore-db=mysql should not ignore mysql.ndb_apply_status - Add test case
This commit is contained in:
@ -0,0 +1 @@
|
||||
--replicate_ignore_db=mysql
|
26
mysql-test/suite/rpl_ndb/t/rpl_ndb_apply_status.test
Normal file
26
mysql-test/suite/rpl_ndb/t/rpl_ndb_apply_status.test
Normal file
@ -0,0 +1,26 @@
|
||||
-- source include/have_ndb.inc
|
||||
-- source include/have_binlog_format_row.inc
|
||||
-- source include/ndb_master-slave.inc
|
||||
|
||||
#
|
||||
# Bug#28170 replicate-ignore-db=mysql should not ignore mysql.ndb_apply_status
|
||||
#
|
||||
# Slave is started with --replicate-ignore-db=mysql
|
||||
#
|
||||
sync_slave_with_master;
|
||||
echo *** on slave there should be zero rows ***;
|
||||
select count(*) from mysql.ndb_apply_status;
|
||||
|
||||
connection master;
|
||||
create table t1 (a int key, b int) engine ndb;
|
||||
insert into t1 values (1,1);
|
||||
echo *** on master it should be empty ***;
|
||||
select * from mysql.ndb_apply_status;
|
||||
|
||||
sync_slave_with_master;
|
||||
echo *** on slave there should be one row ***;
|
||||
select count(*) from mysql.ndb_apply_status;
|
||||
|
||||
connection master;
|
||||
drop table t1;
|
||||
sync_slave_with_master;
|
Reference in New Issue
Block a user