| 851 | } |
| 852 | |
| 853 | Query_cache_query * Query_cache_block::query() |
| 854 | { |
| 855 | #ifndef DBUG_OFF |
| 856 | if (type != QUERY) |
| 857 | query_cache.wreck(__LINE__, "incorrect block type"); |
| 858 | #endif |
| 859 | return (Query_cache_query *) data(); |
| 860 | } |
| 861 | |
| 862 | Query_cache_table * Query_cache_block::table() |
| 863 | { |
no test coverage detected