diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-03-20 20:56:14 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-03-20 20:56:14 +0100 |
commit | 01fd55ccaecc52ab4f5946287d3f7a992d81a053 (patch) | |
tree | 7af0595a233a35e279d1627ffeaea1c378d3c502 /sql/sql_cache.h | |
parent | e73f13a707a2bc8e19c7c1424342eec7545797ae (diff) | |
download | mariadb-git-01fd55ccaecc52ab4f5946287d3f7a992d81a053.tar.gz |
MDEV-249 QUERY CACHE INFORMATION
Diffstat (limited to 'sql/sql_cache.h')
-rw-r--r-- | sql/sql_cache.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sql/sql_cache.h b/sql/sql_cache.h index 7444d444cf9..f35ac889b23 100644 --- a/sql/sql_cache.h +++ b/sql/sql_cache.h @@ -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 |