| 2938 | /** A short cut for thd->get_stmt_da()->set_eof_status(). */ |
| 2939 | |
| 2940 | inline void |
| 2941 | my_eof(THD *thd) |
| 2942 | { |
| 2943 | thd->set_row_count_func(-1); |
| 2944 | thd->get_stmt_da()->set_eof_status(thd); |
| 2945 | } |
| 2946 | |
| 2947 | #define tmp_disable_binlog(A) \ |
| 2948 | {ulonglong tmp_disable_binlog__save_options= (A)->variables.option_bits; \ |
nothing calls this directly
no test coverage detected