| 860 | } |
| 861 | |
| 862 | Query_cache_table * Query_cache_block::table() |
| 863 | { |
| 864 | #ifndef DBUG_OFF |
| 865 | if (type != TABLE) |
| 866 | query_cache.wreck(__LINE__, "incorrect block type"); |
| 867 | #endif |
| 868 | return (Query_cache_table *) data(); |
| 869 | } |
| 870 | |
| 871 | Query_cache_result * Query_cache_block::result() |
| 872 | { |
no test coverage detected