| 29589 | */ |
| 29590 | |
| 29591 | static bool |
| 29592 | alloc_group_fields(JOIN *join, ORDER *group) |
| 29593 | { |
| 29594 | if (fill_cached_item_list(join->thd, &join->group_fields, group)) |
| 29595 | return true; |
| 29596 | join->sort_and_group=1; /* Mark for do_select */ |
| 29597 | return false; |
| 29598 | } |
| 29599 | |
| 29600 | static bool |
| 29601 | alloc_order_fields(JOIN *join, ORDER *order, uint max_number_of_elements) |
no test coverage detected