| 4322 | */ |
| 4323 | |
| 4324 | static my_bool kill_callback_check(THD *thd, kill_callback_arg *arg) |
| 4325 | { |
| 4326 | return (thd->get_command() == COM_BINLOG_DUMP && |
| 4327 | thd->variables.server_id == arg->slave_server_id && |
| 4328 | thd != arg->thd); |
| 4329 | } |
| 4330 | |
| 4331 | |
| 4332 | /** |
nothing calls this directly
no test coverage detected