| 3328 | */ |
| 3329 | |
| 3330 | void |
| 3331 | Query_cache::invalidate_table_internal(uchar *key, size_t key_length) |
| 3332 | { |
| 3333 | Query_cache_block *table_block= |
| 3334 | (Query_cache_block*)my_hash_search(&tables, key, key_length); |
| 3335 | if (table_block) |
| 3336 | { |
| 3337 | Query_cache_block_table *list_root= table_block->table(0); |
| 3338 | invalidate_query_block_list(list_root); |
| 3339 | } |
| 3340 | } |
| 3341 | |
| 3342 | /** |
| 3343 | Invalidate a linked list of query cache blocks. |
nothing calls this directly
no test coverage detected