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/lex.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/lex.h')
-rw-r--r-- | sql/lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/lex.h b/sql/lex.h index cf0059a1397..5b6c86bf0ed 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -399,6 +399,7 @@ static SYMBOL symbols[] = { { "RLIKE", SYM(REGEXP)}, /* Like in mSQL2 */ { "ROLLBACK", SYM(ROLLBACK_SYM)}, { "ROLLUP", SYM(ROLLUP_SYM)}, + { "ROUTINE", SYM(ROUTINE_SYM)}, { "ROW", SYM(ROW_SYM)}, { "ROWS", SYM(ROWS_SYM)}, { "ROW_FORMAT", SYM(ROW_FORMAT_SYM)}, |