summaryrefslogtreecommitdiff
path: root/sql/sql_expression_cache.cc
diff options
context:
space:
mode:
authorunknown <sanja@askmonty.org>2010-10-27 06:03:59 +0300
committerunknown <sanja@askmonty.org>2010-10-27 06:03:59 +0300
commita09e5f504ae75ce40eb7cfd568709f55ec6b3764 (patch)
tree22ac3e3c3c1decc7a458720fc26698b3f03aeb1e /sql/sql_expression_cache.cc
parentb4d5f30a869857d532af0200fdb2204213c51f58 (diff)
downloadmariadb-git-a09e5f504ae75ce40eb7cfd568709f55ec6b3764.tar.gz
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.
Diffstat (limited to 'sql/sql_expression_cache.cc')
-rw-r--r--sql/sql_expression_cache.cc2
1 files changed, 1 insertions, 1 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<Item*> &dependants,