From a09e5f504ae75ce40eb7cfd568709f55ec6b3764 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 27 Oct 2010 06:03:59 +0300 Subject: [PATCH] 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. --- sql/sql_expression_cache.cc | 2 +- sql/sql_expression_cache.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/sql_expression_cache.cc b/sql/sql_expression_cache.cc index ca7c583292c..440d6cdc80f 100644 --- a/sql/sql_expression_cache.cc +++ b/sql/sql_expression_cache.cc @@ -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 &dependants, diff --git a/sql/sql_expression_cache.h b/sql/sql_expression_cache.h index d74e9f49178..88f71e0cf32 100644 --- a/sql/sql_expression_cache.h +++ b/sql/sql_expression_cache.h @@ -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 {