Commit a09e5f50 authored by unknown's avatar unknown

Type of the variables fixed.

sql/sql_expression_cache.cc:
  Type of the variable fixed.
sql/sql_expression_cache.h:
  Type of the variable fixed.
parent b4d5f30a
......@@ -6,7 +6,7 @@
Expression cache is used only for caching subqueries now, so its statistic
variables we call subquery_cache*.
*/
ulonglong subquery_cache_miss, subquery_cache_hit;
ulong subquery_cache_miss, subquery_cache_hit;
Expression_cache_tmptable::Expression_cache_tmptable(THD *thd,
List<Item*> &dependants,
......
......@@ -12,7 +12,7 @@
constructed. That's why they are not visible in this interface.
*/
extern ulonglong subquery_cache_miss, subquery_cache_hit;
extern ulong subquery_cache_miss, subquery_cache_hit;
class Expression_cache :public Sql_alloc
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment