summaryrefslogtreecommitdiff
path: root/sql/item_create.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sql/item_create.cc')
-rw-r--r--sql/item_create.cc17
1 files changed, 12 insertions, 5 deletions
diff --git a/sql/item_create.cc b/sql/item_create.cc
index 548ce3bac94..385d8de98fc 100644
--- a/sql/item_create.cc
+++ b/sql/item_create.cc
@@ -3399,6 +3399,8 @@ Create_sp_func::create_with_db(THD *thd, LEX_CSTRING *db, LEX_CSTRING *name,
Item *func= NULL;
LEX *lex= thd->lex;
sp_name *qname;
+ const Sp_handler *sph= &sp_handler_function;
+ Database_qualified_name pkgname(&null_clex_str, &null_clex_str);
if (has_named_parameters(item_list))
{
@@ -3419,13 +3421,18 @@ Create_sp_func::create_with_db(THD *thd, LEX_CSTRING *db, LEX_CSTRING *name,
arg_count= item_list->elements;
qname= new (thd->mem_root) sp_name(db, name, use_explicit_name);
- sp_handler_function.add_used_routine(lex, thd, qname);
-
+ if (sph->sp_resolve_package_routine(thd, thd->lex->sphead,
+ qname, &sph, &pkgname))
+ return NULL;
+ sph->add_used_routine(lex, thd, qname);
+ if (pkgname.m_name.length)
+ sp_handler_package_body.add_used_routine(lex, thd, &pkgname);
if (arg_count > 0)
- func= new (thd->mem_root) Item_func_sp(thd, lex->current_context(), qname,
- *item_list);
+ func= new (thd->mem_root) Item_func_sp(thd, lex->current_context(),
+ qname, sph, *item_list);
else
- func= new (thd->mem_root) Item_func_sp(thd, lex->current_context(), qname);
+ func= new (thd->mem_root) Item_func_sp(thd, lex->current_context(),
+ qname, sph);
lex->safe_to_cache_query= 0;
return func;