mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
6a5f89c9b1
client/mysqltest.c: --replace_result can now use variables mysql-test/r/rpl000014.result: Fix to use new replace mysql-test/r/rpl000015.result: Fix to use new replace mysql-test/r/rpl000016.result: Fix to use new replace mysql-test/r/rpl_log.result: Fix to use new replace mysql-test/t/join.test: Fix to use new replace mysql-test/t/rpl000014.test: Fix to use new replace mysql-test/t/rpl000015.test: Fix to use new replace mysql-test/t/rpl000016.test: Fix to use new replace mysql-test/t/rpl_log.test: Fix to use new replace readline/rltty.c: Add missing function
36 lines
1 KiB
Text
36 lines
1 KiB
Text
connect (master,localhost,root,,test,0,master.sock);
|
|
connect (slave,localhost,root,,test,0, slave.sock);
|
|
connection master;
|
|
reset master;
|
|
show master status;
|
|
save_master_pos;
|
|
connection slave;
|
|
reset slave;
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
show slave status;
|
|
change master to master_host='127.0.0.1';
|
|
# The following needs to be cleaned up when change master is fixed
|
|
--replace_result $MASTER_MYPORT MASTER_PORT 3306 MASTER_PORT 3334 MASTER_PORT
|
|
show slave status;
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
eval change master to master_host='127.0.0.1',master_user='root',
|
|
master_password='',master_port=$MASTER_MYPORT;
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
show slave status;
|
|
slave start;
|
|
sync_with_master;
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
show slave status;
|
|
connection master;
|
|
drop table if exists t1;
|
|
create table t1 (n int);
|
|
insert into t1 values (10),(45),(90);
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
select * from t1;
|
|
connection master;
|
|
drop table t1;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|