diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-03-12 20:13:05 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-03-14 12:40:00 +0100 |
commit | 24d6cd7d62c10a6a17be9f4fac1a112f16f8b6e8 (patch) | |
tree | 15bec26cde6f7c3f890150668614a57fba124002 /sql/item_cmpfunc.cc | |
parent | c2671e97a3d6c68ee24090abca0ba5ff40d6d376 (diff) | |
download | mariadb-git-24d6cd7d62c10a6a17be9f4fac1a112f16f8b6e8.tar.gz |
cleanup: Arg_comparator::cache_converted_constant()
It's a generic function, not using anything from Arg_comparator.
Make it a static function, not a class method, to be able to use
it later without Arg_comparator
Diffstat (limited to 'sql/item_cmpfunc.cc')
-rw-r--r-- | sql/item_cmpfunc.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sql/item_cmpfunc.cc b/sql/item_cmpfunc.cc index 7238caef6a0..75ed765ea7d 100644 --- a/sql/item_cmpfunc.cc +++ b/sql/item_cmpfunc.cc @@ -34,6 +34,8 @@ #include "sql_time.h" // make_truncated_value_warning #include "sql_base.h" // dynamic_column_error_message +static Item** cache_converted_constant(THD *thd, Item **value, + Item **cache_item, Item_result type,enum_field_types f_type); /** find an temporal type (item) that others will be converted to @@ -707,9 +709,8 @@ int Arg_comparator::set_cmp_func(Item_func_or_sum *owner_arg, @return cache item or original value. */ -Item** Arg_comparator::cache_converted_constant(THD *thd, Item **value, - Item **cache_item, - Item_result type) +static Item** cache_converted_constant(THD *thd, Item **value, + Item **cache_item, Item_result type) { /* Don't need cache if doing context analysis only. |