diff options
author | Alexander Barkov <bar@mariadb.org> | 2015-10-12 10:49:37 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2015-10-12 10:49:37 +0400 |
commit | 0b4c3ad8181b909a3af04847e229900b1e9c5232 (patch) | |
tree | 1d40f60108f135f39656d709c7cf90e87340192b /sql/item_func.cc | |
parent | affff1aefc81ea0a3cb778a6617504ccd1e905fc (diff) | |
download | mariadb-git-0b4c3ad8181b909a3af04847e229900b1e9c5232.tar.gz |
Moving Used_tables_and_const_chache from Item_func to Item_func_or_sum
and thus reusing Used_tables_and_const_cache for Item_sum instead of
declaring the same members inside Item_sum.
Diffstat (limited to 'sql/item_func.cc')
-rw-r--r-- | sql/item_func.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sql/item_func.cc b/sql/item_func.cc index ed6722fac4a..c1df7bd6a6e 100644 --- a/sql/item_func.cc +++ b/sql/item_func.cc @@ -441,12 +441,6 @@ void Item_func::split_sum_func(THD *thd, Item **ref_pointer_array, } -table_map Item_func::used_tables() const -{ - return used_tables_cache; -} - - table_map Item_func::not_null_tables() const { return not_null_tables_cache; |