| 3008 | } |
| 3009 | |
| 3010 | static bool should_stop(binlog_send_info *info, bool kill_server_check= false) |
| 3011 | { |
| 3012 | return |
| 3013 | info->net->error || |
| 3014 | info->net->vio == NULL || |
| 3015 | (info->thd->killed && |
| 3016 | (info->thd->killed != KILL_SERVER || kill_server_check)) || |
| 3017 | info->error != 0 || |
| 3018 | info->should_stop; |
| 3019 | } |
| 3020 | |
| 3021 | /** |
| 3022 | * wait for new events to enter binlog |
no outgoing calls
no test coverage detected