1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-249 QUERY CACHE INFORMATION

This commit is contained in:
Sergei Golubchik
2013-03-20 20:56:14 +01:00
parent e73f13a707
commit 01fd55ccae
11 changed files with 309 additions and 14 deletions

View File

@ -141,12 +141,12 @@ struct Query_cache_block
inline bool is_free(void) { return type == FREE; }
void init(ulong length);
void destroy();
inline uint headers_len();
inline uchar* data(void);
inline Query_cache_query *query();
inline Query_cache_table *table();
inline Query_cache_result *result();
inline Query_cache_block_table *table(TABLE_COUNTER_TYPE n);
uint headers_len();
uchar* data(void);
Query_cache_query *query();
Query_cache_table *table();
Query_cache_result *result();
Query_cache_block_table *table(TABLE_COUNTER_TYPE n);
};
struct Query_cache_query