mirror of
https://github.com/MariaDB/server.git
synced 2025-01-25 00:04:33 +01:00
26ffc5d4de
compiles, passes test suite, does magic, has bugs, but none that I know at this point. Have not tested everything yet, though. Changed a lot of code in the client, but normal stuff appears to be working. BUILD/SETUP.sh: make sure client link statically client/mysqltest.c: new commands to test replication probe/parse include/errmsg.h: new error messages include/mysql.h: support for replication auto-magic libmysql/errmsg.c: new error messages libmysql/libmysql.c: replication probe/parse auto-magic mysql-test/mysql-test-run.sh: --client-gdb to run the client in debugger
30 lines
616 B
Text
30 lines
616 B
Text
source include/master-slave.inc;
|
|
|
|
#first, make sure the slave has had enough time to register
|
|
connection master;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
|
|
#discover slaves
|
|
connection master;
|
|
rpl_probe;
|
|
|
|
#turn on master/slave query direction auto-magic
|
|
enable_rpl_parse;
|
|
drop table if exists t1;
|
|
create table t1 ( n int);
|
|
insert into t1 values (1),(2),(3),(4);
|
|
disable_rpl_parse;
|
|
save_master_pos;
|
|
enable_rpl_parse;
|
|
connection slave;
|
|
sync_with_master;
|
|
insert into t1 values(5);
|
|
connection master;
|
|
select * from t1;
|
|
select * from t1;
|
|
disable_rpl_parse;
|
|
select * from t1;
|
|
connection slave;
|
|
select * from t1;
|