1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Removing Used_tables_and_const_cache from "class udf_handler".

It was used only temporary, during udf_handler::fix_fields() time,
and then copied to the owner Item_func_or_sum object.
Changing the code to use the Used_tables_and_const_cache part
of the owner Item_sum_or_func object directly.
This commit is contained in:
Alexander Barkov
2015-10-14 18:33:16 +04:00
parent 3723c70a30
commit b867ade591
5 changed files with 40 additions and 19 deletions

View File

@ -52,7 +52,7 @@ typedef struct st_udf_func
class Item_result_field;
class udf_handler :public Sql_alloc, public Used_tables_and_const_cache
class udf_handler :public Sql_alloc
{
protected:
udf_func *u_d;