summaryrefslogtreecommitdiff
path: root/sql/sql_cache.h
diff options
context:
space:
mode:
authorDaniel Black <daniel@linux.vnet.ibm.com>2018-02-26 18:13:59 +1100
committerDaniel Black <daniel@linux.vnet.ibm.com>2018-02-26 18:14:58 +1100
commit31aa27776868ddd656ddb5d39e3d0a1a82e2e218 (patch)
treedcedfba66807f888deb0b5960971e074163445fe /sql/sql_cache.h
parent0805a9565f09a36104a420d9e229e44b1eea8879 (diff)
downloadmariadb-git-31aa27776868ddd656ddb5d39e3d0a1a82e2e218.tar.gz
MDEV-10814: Don't coredump query cache
merge fix: additional_data_size is a size_t class Query_cache member.
Diffstat (limited to 'sql/sql_cache.h')
-rw-r--r--sql/sql_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_cache.h b/sql/sql_cache.h
index 98c5ded7f97..0ed45a9ed81 100644
--- a/sql/sql_cache.h
+++ b/sql/sql_cache.h
@@ -337,7 +337,7 @@ protected:
till the end of a flush operation.
*/
mysql_mutex_t structure_guard_mutex;
- ulong additional_data_size;
+ size_t additional_data_size;
uchar *cache; // cache memory
Query_cache_block *first_block; // physical location block list
Query_cache_block *queries_blocks; // query list (LIFO)