diff options
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r-- | sql/item_strfunc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h index 7d7b62df0dc..7b4b7fe8fa5 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -446,10 +446,10 @@ public: void update_used_tables(); const char *func_name() const { return "make_set"; } - bool walk(Item_processor processor, byte *arg) + bool walk(Item_processor processor, bool walk_subquery, byte *arg) { - return item->walk(processor, arg) || - Item_str_func::walk(processor, arg); + return item->walk(processor, walk_subquery, arg) || + Item_str_func::walk(processor, walk_subquery, arg); } Item *transform(Item_transformer transformer, byte *arg) { |