| 30287 | /** Copy result of sum functions to record in tmp_table. */ |
| 30288 | |
| 30289 | static void |
| 30290 | copy_sum_funcs(Item_sum **func_ptr, Item_sum **end_ptr) |
| 30291 | { |
| 30292 | for (; func_ptr != end_ptr ; func_ptr++) |
| 30293 | (void) (*func_ptr)->save_in_result_field(1); |
| 30294 | return; |
| 30295 | } |
| 30296 | |
| 30297 | |
| 30298 | static bool |
no test coverage detected