mariadb/mysql-test/suite/multi_source/change_master.result
Monty 4ebaa80f0b Failed change master could leave around old relay log files
The reason was that there where no cleanup after a failed 'change master'.
Fixed by doing a cleanup of created relay log files in remove_master_info()
2021-09-14 13:43:50 +03:00

8 lines
410 B
Text

RESET MASTER;
connect slave,127.0.0.1,root,,,$SERVER_MYPORT_3;
change master 'abc1' to relay_log_file='';
ERROR HY000: Failed initializing relay log position: Could not find target log during relay log initialization
change master 'abc1' to relay_log_file='';
ERROR HY000: Failed initializing relay log position: Could not find target log during relay log initialization
disconnect slave;
connection default;