diff options
author | acurtis@pcgem.rdg.cyberkinetica.com <> | 2004-12-23 10:46:24 +0000 |
---|---|---|
committer | acurtis@pcgem.rdg.cyberkinetica.com <> | 2004-12-23 10:46:24 +0000 |
commit | b1e30904d5f10d2273819c25cb2dcc251a097bd9 (patch) | |
tree | 1f9ae909b765f73df023264dce5aa52d83e5cb8e /sql/sp.h | |
parent | 8fb20802dc0655cfd5895590d2b417f0c135b237 (diff) | |
download | mariadb-git-b1e30904d5f10d2273819c25cb2dcc251a097bd9.tar.gz |
WL#925 - Privileges for stored routines
Implement fine-grained control over access to stored procedures
Privileges are cached (same way as existing table/column privs)
Diffstat (limited to 'sql/sp.h')
-rw-r--r-- | sql/sp.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -37,6 +37,9 @@ sp_head * sp_find_procedure(THD *thd, sp_name *name); int +sp_exists_routine(THD *thd, TABLE_LIST *procs, bool any, bool no_error); + +int sp_create_procedure(THD *thd, sp_head *sp); int |