| 3352 | */ |
| 3353 | |
| 3354 | void |
| 3355 | Query_cache::invalidate_query_block_list(Query_cache_block_table *list_root) |
| 3356 | { |
| 3357 | while (list_root->next != list_root) |
| 3358 | { |
| 3359 | Query_cache_block *query_block= list_root->next->block(); |
| 3360 | BLOCK_LOCK_WR(query_block); |
| 3361 | free_query(query_block); |
| 3362 | } |
| 3363 | } |
| 3364 | |
| 3365 | /* |
| 3366 | Register given table list beginning with given position in tables table of |