diff options
author | pem@mysql.comhem.se <> | 2003-12-10 19:05:37 +0100 |
---|---|---|
committer | pem@mysql.comhem.se <> | 2003-12-10 19:05:37 +0100 |
commit | b27e9d605233e6b5d5bb03360143a8bad84438f3 (patch) | |
tree | 95ced28e5d4ffb0b93048b1730e6d30cbb5cab04 /sql/sp.h | |
parent | 2c3065c9cbac9a8b8ad4d053d0c95f2c7e53714a (diff) | |
download | mariadb-git-b27e9d605233e6b5d5bb03360143a8bad84438f3.tar.gz |
WL#1363: Update the mysql.proc table and add new fields.
Also made the parsing and handling of SP characteristics
more general and extendable, and added a few ch:istics.
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); |