| 566 | */ |
| 567 | |
| 568 | bool Protocol::send_error(uint sql_errno, const char *err_msg, |
| 569 | const char *sql_state) |
| 570 | { |
| 571 | DBUG_ENTER("Protocol::send_error"); |
| 572 | const bool retval= net_send_error_packet(thd, sql_errno, err_msg, sql_state); |
| 573 | DBUG_RETURN(retval); |
| 574 | } |
| 575 | |
| 576 | |
| 577 | /**************************************************************************** |
nothing calls this directly
no test coverage detected