mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 15:45:33 +02:00
Post-merge fixes.
This commit is contained in:
parent
cd8508d371
commit
03042c7db4
16 changed files with 51 additions and 51 deletions
|
|
@ -393,7 +393,7 @@ sp_add_fun_to_lex(LEX *lex, LEX_STRING fun)
|
|||
ls->str= sql_strmake(fun.str, fun.length);
|
||||
ls->length= fun.length;
|
||||
|
||||
hash_insert(&lex->spfuns, (byte *)ls);
|
||||
my_hash_insert(&lex->spfuns, (byte *)ls);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -405,7 +405,7 @@ sp_merge_funs(LEX *dst, LEX *src)
|
|||
LEX_STRING *ls= (LEX_STRING *)hash_element(&src->spfuns, i);
|
||||
|
||||
if (! hash_search(&dst->spfuns, (byte *)ls->str, ls->length))
|
||||
hash_insert(&dst->spfuns, (byte *)ls);
|
||||
my_hash_insert(&dst->spfuns, (byte *)ls);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue