mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-11177 mysqlbinlog exits silently without error when another
instance connects to server. New thread kill status added KILL_SLAVE_SAME_ID, and the related error message.
This commit is contained in:
@ -1987,6 +1987,8 @@ int killed_errno(killed_state killed)
|
||||
case KILL_SERVER:
|
||||
case KILL_SERVER_HARD:
|
||||
DBUG_RETURN(ER_SERVER_SHUTDOWN);
|
||||
case KILL_SLAVE_SAME_ID:
|
||||
DBUG_RETURN(ER_SLAVE_SAME_ID);
|
||||
}
|
||||
DBUG_RETURN(0); // Keep compiler happy
|
||||
}
|
||||
|
Reference in New Issue
Block a user