summaryrefslogtreecommitdiff
path: root/sql/sp.h
diff options
context:
space:
mode:
authorgluh@gluh.mysql.r18.ru <>2003-05-06 21:09:20 +0500
committergluh@gluh.mysql.r18.ru <>2003-05-06 21:09:20 +0500
commit33cabdc3b1b912f4ac6a5add91c6f98033eabb2c (patch)
treefb4c2640f7b2c3d485d1e63a93e7afeb4dfb397f /sql/sp.h
parent4e40725c241a17603947b651934064cf9ded2206 (diff)
downloadmariadb-git-33cabdc3b1b912f4ac6a5add91c6f98033eabb2c.tar.gz
Expand the mysql.proc table
Diffstat (limited to 'sql/sp.h')
-rw-r--r--sql/sp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sql/sp.h b/sql/sp.h
index 21fcb4c5360..3a021288907 100644
--- a/sql/sp.h
+++ b/sql/sp.h
@@ -31,7 +31,8 @@ sp_head *
sp_find_procedure(THD *thd, LEX_STRING *name);
int
-sp_create_procedure(THD *thd, char *name, uint namelen, char *def, uint deflen);
+sp_create_procedure(THD *thd, char *name, uint namelen, char *def, uint deflen,
+ char *comment, uint commentlen, bool suid);
int
sp_drop_procedure(THD *thd, char *name, uint namelen);
@@ -41,7 +42,8 @@ sp_head *
sp_find_function(THD *thd, LEX_STRING *name);
int
-sp_create_function(THD *thd, char *name, uint namelen, char *def, uint deflen);
+sp_create_function(THD *thd, char *name, uint namelen, char *def, uint deflen,
+ char *comment, uint commentlen, bool suid);
int
sp_drop_function(THD *thd, char *name, uint namelen);