| 3228 | */ |
| 3229 | |
| 3230 | static void reset_stmt_params(Prepared_statement *stmt) |
| 3231 | { |
| 3232 | Item_param **item= stmt->param_array; |
| 3233 | Item_param **end= item + stmt->param_count; |
| 3234 | for (;item < end ; ++item) |
| 3235 | { |
| 3236 | (**item).reset(); |
| 3237 | (**item).sync_clones(); |
| 3238 | } |
| 3239 | } |
| 3240 | |
| 3241 | |
| 3242 | static void mysql_stmt_execute_common(THD *thd, |
no test coverage detected