diff options
author | konstantin@mysql.com <> | 2004-10-08 19:13:09 +0400 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-10-08 19:13:09 +0400 |
commit | 234c80b6895314206b2631bfe0825f5787890cb3 (patch) | |
tree | 340f7d7161a03919e35c9d1d393b1ee8b23a5fbf /sql/item_strfunc.h | |
parent | b0154e21dc2804788d3a81a2d90ca29afef5bd5d (diff) | |
download | mariadb-git-234c80b6895314206b2631bfe0825f5787890cb3.tar.gz |
Deployment of centralized Item change registry, step 2: Item_ref
doesn't need to have it's own recovery mechanism.
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r-- | sql/item_strfunc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h index 08123370bc6..77c1caec9fc 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -105,7 +105,7 @@ public: separator->check_cols(1) || Item_func::fix_fields(thd, tlist, ref)); } - void split_sum_func(Item **ref_pointer_array, List<Item> &fields); + void split_sum_func(THD *thd, Item **ref_pointer_array, List<Item> &fields); const char *func_name() const { return "concat_ws"; } bool walk(Item_processor processor, byte *arg) { @@ -418,7 +418,7 @@ public: item->check_cols(1) || Item_func::fix_fields(thd, tlist, ref)); } - void split_sum_func(Item **ref_pointer_array, List<Item> &fields); + void split_sum_func(THD *thd, Item **ref_pointer_array, List<Item> &fields); void fix_length_and_dec(); void update_used_tables(); const char *func_name() const { return "make_set"; } |