| 2927 | /** A short cut for thd->get_stmt_da()->set_ok_status(). */ |
| 2928 | |
| 2929 | inline void |
| 2930 | my_ok(THD *thd, ulonglong affected_rows= 0, ulonglong id= 0, |
| 2931 | const char *message= NULL) |
| 2932 | { |
| 2933 | thd->set_row_count_func(affected_rows); |
| 2934 | thd->get_stmt_da()->set_ok_status(affected_rows, id, message); |
| 2935 | } |
| 2936 | |
| 2937 | |
| 2938 | /** A short cut for thd->get_stmt_da()->set_eof_status(). */ |
nothing calls this directly
no test coverage detected