| 1452 | */ |
| 1453 | |
| 1454 | static table_map get_table_map(List<Item> *items) |
| 1455 | { |
| 1456 | List_iterator_fast<Item> item_it(*items); |
| 1457 | Item_field *item; |
| 1458 | table_map map= 0; |
| 1459 | |
| 1460 | while ((item= (Item_field *) item_it++)) |
| 1461 | map|= item->all_used_tables(); |
| 1462 | DBUG_PRINT("info", ("table_map: 0x%08lx", (long) map)); |
| 1463 | return map; |
| 1464 | } |
| 1465 | |
| 1466 | /** |
| 1467 | If one row is updated through two different aliases and the first |
no test coverage detected