diff options
author | knielsen@mysql.com <> | 2006-05-15 19:57:10 +0200 |
---|---|---|
committer | knielsen@mysql.com <> | 2006-05-15 19:57:10 +0200 |
commit | c8fd62f3b2c621610e01787b187485af9dbf70bf (patch) | |
tree | 5c90e354587c8207f12674d3d36bc1b67a2d47a8 /sql/item.cc | |
parent | bec4d0a1fa6ed79361d85180c41cb688a2f8485d (diff) | |
download | mariadb-git-c8fd62f3b2c621610e01787b187485af9dbf70bf.tar.gz |
After-merge fixes; some function signatures changed from Item * to Item **.
Diffstat (limited to 'sql/item.cc')
-rw-r--r-- | sql/item.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/item.cc b/sql/item.cc index fbdb0aa687b..ba378e56cb0 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -958,7 +958,7 @@ void Item_splocal::print(String *str) } -bool Item_splocal::set_value(THD *thd, sp_rcontext *ctx, Item *it) +bool Item_splocal::set_value(THD *thd, sp_rcontext *ctx, Item **it) { return ctx->set_variable(thd, get_var_idx(), it); } @@ -5375,9 +5375,9 @@ void Item_trigger_field::set_required_privilege(const bool rw) } -bool Item_trigger_field::set_value(THD *thd, sp_rcontext */*ctx*/, Item *it) +bool Item_trigger_field::set_value(THD *thd, sp_rcontext */*ctx*/, Item **it) { - Item *item= sp_prepare_func_item(thd, &it); + Item *item= sp_prepare_func_item(thd, it); return (!item || (!fixed && fix_fields(thd, 0)) || (item->save_in_field(field, 0) < 0)); |