mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
56303b0383
a bit more work on failsafe replication client/mysqltest.c: added require_manager support mysql-test/mysql-test-run.sh: added --no-manager mysql-test/r/rpl_failsafe.result: updated result mysql-test/t/rpl000018.test: must have manager mysql-test/t/rpl_failsafe.test: must have manager sql/repl_failsafe.cc: more work sql/repl_failsafe.h: more work sql/slave.cc: update replication status for fail-safe replication on different events
22 lines
480 B
Text
22 lines
480 B
Text
require_manager;
|
|
connect (master,localhost,root,,test,0,master.sock);
|
|
connect (slave,localhost,root,,test,0,slave.sock);
|
|
server_stop master;
|
|
server_start master;
|
|
connection slave;
|
|
reset slave;
|
|
slave start;
|
|
connection master;
|
|
show master logs;
|
|
drop table if exists t1;
|
|
create table t1(n int);
|
|
insert into t1 values (3351);
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
select * from t1;
|
|
connection master;
|
|
drop table t1;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|