| 5259 | } |
| 5260 | |
| 5261 | void dump_node(Query_cache_block_table * node, |
| 5262 | const char * call, const char * descr) |
| 5263 | { |
| 5264 | DBUG_PRINT("qcache", ("%s: %s: node: %p", call, descr, node)); |
| 5265 | DBUG_PRINT("qcache", ("%s: %s: node block: %p", |
| 5266 | call, descr, node->block())); |
| 5267 | DBUG_PRINT("qcache", ("%s: %s: next: %p", call, descr, |
| 5268 | node->next)); |
| 5269 | DBUG_PRINT("qcache", ("%s: %s: prev: %p", call, descr, |
| 5270 | node->prev)); |
| 5271 | } |
| 5272 | |
| 5273 | my_bool Query_cache::in_table_list(Query_cache_block_table * root, |
| 5274 | Query_cache_block_table * point, |