mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
d6d6c5e1bb
I manually edited rpl_openssl.result because the test is skipped on my machine. Hope it's correct.
30 lines
814 B
Text
30 lines
814 B
Text
# See SHOW SLAVE STATUS displays well after RESET SLAVE (it should display the
|
|
# --master-* options from mysqld, as this is what is going to be used next time
|
|
# slave threads will be started). In bug 985, it displayed old values (of before
|
|
# RESET SLAVE).
|
|
|
|
source include/master-slave.inc;
|
|
connection master;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
--replace_column 1 # 33 #
|
|
show slave status;
|
|
|
|
stop slave;
|
|
change master to master_user='test';
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
--replace_column 1 # 33 #
|
|
show slave status;
|
|
|
|
reset slave;
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
--replace_column 1 # 33 #
|
|
show slave status;
|
|
|
|
start slave;
|
|
sync_with_master;
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
--replace_column 1 # 33 #
|
|
show slave status;
|