diff options
Diffstat (limited to 'sql/sp.h')
-rw-r--r-- | sql/sp.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -33,7 +33,7 @@ sp_find_procedure(THD *thd, LEX_STRING *name); int sp_create_procedure(THD *thd, char *name, uint namelen, char *def, uint deflen, - char *comment, uint commentlen, bool suid); + st_sp_chistics *chistics); int sp_drop_procedure(THD *thd, char *name, uint namelen); @@ -42,7 +42,7 @@ sp_drop_procedure(THD *thd, char *name, uint namelen); int sp_update_procedure(THD *thd, char *name, uint namelen, char *newname, uint newnamelen, - char *comment, uint commentlen, enum suid_behaviour suid); + st_sp_chistics *chistics); int sp_show_create_procedure(THD *thd, LEX_STRING *name); @@ -55,7 +55,7 @@ sp_find_function(THD *thd, LEX_STRING *name); int sp_create_function(THD *thd, char *name, uint namelen, char *def, uint deflen, - char *comment, uint commentlen, bool suid); + st_sp_chistics *chistics); int sp_drop_function(THD *thd, char *name, uint namelen); @@ -63,7 +63,7 @@ sp_drop_function(THD *thd, char *name, uint namelen); int sp_update_function(THD *thd, char *name, uint namelen, char *newname, uint newnamelen, - char *comment, uint commentlen, enum suid_behaviour suid); + st_sp_chistics *chistics); int sp_show_create_function(THD *thd, LEX_STRING *name); |