| 535 | /* This works because items are allocated with sql_alloc() */ |
| 536 | |
| 537 | void free_items(Item *item) |
| 538 | { |
| 539 | Item *next; |
| 540 | DBUG_ENTER("free_items"); |
| 541 | for (; item ; item=next) |
| 542 | { |
| 543 | next=item->next; |
| 544 | item->delete_self(); |
| 545 | } |
| 546 | DBUG_VOID_RETURN; |
| 547 | } |
| 548 | |
| 549 | /** |
| 550 | Perform one connection-level (COM_XXXX) command. |
no test coverage detected