mirror of
https://github.com/MariaDB/server.git
synced 2025-01-25 00:04:33 +01:00
dae34fb60f
and other replicate-*-table options in SHOW SLAVE STATUS. Seems like it had not been done, so I push it now: there's 4 new columns to SHOW SLAVE STATUS. mysql-test/r/rpl000015.result: Result update (more columns) mysql-test/r/rpl_empty_master_crash.result: Result update (more columns) mysql-test/r/rpl_flush_log_loop.result: Result update (more columns) mysql-test/r/rpl_log.result: Result update (more columns) mysql-test/r/rpl_log_pos.result: Result update (more columns) mysql-test/r/rpl_redirect.result: Result update (more columns) mysql-test/r/rpl_replicate_do.result: Result update (more columns) mysql-test/r/rpl_rotate_logs.result: Result update (more columns) mysql-test/t/rpl_replicate_do.test: Result update (more columns) sql/slave.cc: Print replicate_*_table options in SHOW SLAVE STATUS sql/slave.h: two functions to make a string of replicate_*_table lists.
37 lines
924 B
Text
37 lines
924 B
Text
# This test assumes we are ignoring updates on table t2, but doing
|
|
# updates on t1
|
|
|
|
source include/master-slave.inc;
|
|
--disable_warnings
|
|
drop table if exists t11;
|
|
connection slave;
|
|
drop table if exists t11;
|
|
--enable_warnings
|
|
|
|
create table t2 (n int);
|
|
insert into t2 values(4);
|
|
connection master;
|
|
create table t2 (s char(20));
|
|
load data infile '../../std_data/words.dat' into table t2;
|
|
insert into t2 values('five');
|
|
create table t1 (m int);
|
|
insert into t1 values(15),(16),(17);
|
|
update t1 set m=20 where m=16;
|
|
delete from t1 where m=17;
|
|
create table t11 select * from t1;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
select * from t1;
|
|
select * from t2;
|
|
--error 1146
|
|
select * from t11;
|
|
connection master;
|
|
drop table if exists t1,t2,t11;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
# show slave status, just to see of it prints replicate-do-table
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
show slave status;
|
|
|