| 534 | */ |
| 535 | |
| 536 | bool Protocol::send_ok(uint server_status, uint statement_warn_count, |
| 537 | ulonglong affected_rows, ulonglong last_insert_id, |
| 538 | const char *message) |
| 539 | { |
| 540 | DBUG_ENTER("Protocol::send_ok"); |
| 541 | const bool retval= |
| 542 | net_send_ok(thd, server_status, statement_warn_count, |
| 543 | affected_rows, last_insert_id, message); |
| 544 | DBUG_RETURN(retval); |
| 545 | } |
| 546 | |
| 547 | |
| 548 | /** |
nothing calls this directly
no test coverage detected