| 5364 | } |
| 5365 | } |
| 5366 | inline void send_kill_message() |
| 5367 | { |
| 5368 | mysql_mutex_lock(&LOCK_thd_kill); |
| 5369 | int err= killed_errno(); |
| 5370 | if (err) |
| 5371 | my_message(err, killed_err ? killed_err->msg : ER_THD(this, err), MYF(0)); |
| 5372 | mysql_mutex_unlock(&LOCK_thd_kill); |
| 5373 | } |
| 5374 | /* return TRUE if we will abort query if we make a warning now */ |
| 5375 | inline bool really_abort_on_warning() |
| 5376 | { |
no test coverage detected