| 30314 | |
| 30315 | |
| 30316 | static bool |
| 30317 | update_sum_func(Item_sum **func_ptr) |
| 30318 | { |
| 30319 | Item_sum *func; |
| 30320 | for (; (func= (Item_sum*) *func_ptr) ; func_ptr++) |
| 30321 | if (func->aggregator_add()) |
| 30322 | return 1; |
| 30323 | return 0; |
| 30324 | } |
| 30325 | |
| 30326 | /** |
| 30327 | Copy result of functions to record in tmp_table. |
no test coverage detected