| 1387 | */ |
| 1388 | |
| 1389 | static bool check_list_for_field(List<Item> *items) |
| 1390 | { |
| 1391 | List_iterator_fast <Item> select_it(*items); |
| 1392 | Item *select_el; |
| 1393 | |
| 1394 | while ((select_el= select_it++)) |
| 1395 | { |
| 1396 | if (select_el->with_field()) |
| 1397 | return true; |
| 1398 | } |
| 1399 | return false; |
| 1400 | } |
| 1401 | |
| 1402 | static bool check_list_for_field(ORDER *order) |
| 1403 | { |