mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Bug #44179 reset slave crashes in my_error when reset_logs returns non-zero
my_error() was invoked in reset_slave()'s with purge_relay_logs()-failing branch without passing sql_errno to it. Fixed with setting sql_errno= ER_RELAY_LOG_FAIL in the purge_relay_logs()-failing branch.
This commit is contained in:
@ -1026,7 +1026,10 @@ int reset_slave(THD *thd, Master_info* mi)
|
|||||||
if ((error= purge_relay_logs(&mi->rli, thd,
|
if ((error= purge_relay_logs(&mi->rli, thd,
|
||||||
1 /* just reset */,
|
1 /* just reset */,
|
||||||
&errmsg)))
|
&errmsg)))
|
||||||
|
{
|
||||||
|
sql_errno= ER_RELAY_LOG_FAIL;
|
||||||
goto err;
|
goto err;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Clear master's log coordinates and reset host/user/etc to the values
|
Clear master's log coordinates and reset host/user/etc to the values
|
||||||
|
Reference in New Issue
Block a user