mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00

- Add test case --- Bug#28170 replicate-ignore-db=mysql should not ignore mysql.ndb_apply_status - Add test case
27 lines
724 B
Plaintext
27 lines
724 B
Plaintext
-- 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;
|