diff options
author | unknown <bell@sanja.is.com.ua> | 2003-07-30 14:59:56 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-07-30 14:59:56 +0300 |
commit | 9b9a914c5dd75834b43b049df6a32975b2b9d4d8 (patch) | |
tree | ce261e16e3a0b8b2152f227ddd9a1d55c23f3216 /sql/sql_cache.h | |
parent | 30b751f8a625c6ce839ee90b0de57e657f07c50e (diff) | |
download | mariadb-git-9b9a914c5dd75834b43b049df6a32975b2b9d4d8.tar.gz |
support of more then 255 tables dependence in query cache (fixed BUG#930)
mysql-test/r/query_cache.result:
test of many merged tales
mysql-test/t/query_cache.test:
test of many merged tales
sql/sql_cache.h:
query with merged tables can depend of more then 255 tables
Diffstat (limited to 'sql/sql_cache.h')
-rw-r--r-- | sql/sql_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_cache.h b/sql/sql_cache.h index b15df28f54b..74b1a6cee96 100644 --- a/sql/sql_cache.h +++ b/sql/sql_cache.h @@ -61,7 +61,7 @@ #define QUERY_CACHE_PACK_ITERATION 2 #define QUERY_CACHE_PACK_LIMIT (512*1024L) -#define TABLE_COUNTER_TYPE uint8 +#define TABLE_COUNTER_TYPE uint struct Query_cache_block; struct Query_cache_block_table; |