diff options
author | unknown <sanja@askmonty.org> | 2010-10-27 06:03:59 +0300 |
---|---|---|
committer | unknown <sanja@askmonty.org> | 2010-10-27 06:03:59 +0300 |
commit | a09e5f504ae75ce40eb7cfd568709f55ec6b3764 (patch) | |
tree | 22ac3e3c3c1decc7a458720fc26698b3f03aeb1e /sql/sql_expression_cache.cc | |
parent | b4d5f30a869857d532af0200fdb2204213c51f58 (diff) | |
download | mariadb-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.cc | 2 |
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, |