diff options
author | Vicențiu Ciorbaru <cvicentiu@gmail.com> | 2013-10-18 05:41:13 -0700 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-10-18 05:41:13 -0700 |
commit | db850c525fdd7a2bcb24fd08a9d2c44824be788f (patch) | |
tree | fd8dd3ab8646324925689408a11d8eaf27bb291a /sql/sql_acl.h | |
parent | 81b2856e10a837183b3639d09d8f531a424dabd3 (diff) | |
download | mariadb-git-db850c525fdd7a2bcb24fd08a9d2c44824be788f.tar.gz |
Added CREATE ROLE support as well as DROP ROLE support.
Diffstat (limited to 'sql/sql_acl.h')
-rw-r--r-- | sql/sql_acl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/sql_acl.h b/sql/sql_acl.h index 7f3ee296de8..20d03211fa1 100644 --- a/sql/sql_acl.h +++ b/sql/sql_acl.h @@ -234,6 +234,8 @@ bool mysql_create_user(THD *thd, List <LEX_USER> &list); bool mysql_drop_user(THD *thd, List <LEX_USER> &list); bool mysql_rename_user(THD *thd, List <LEX_USER> &list); bool mysql_revoke_all(THD *thd, List <LEX_USER> &list); +bool mysql_create_role(THD *thd, List <LEX_USER> &list); +bool mysql_drop_role(THD *thd, List <LEX_USER> &list); void fill_effective_table_privileges(THD *thd, GRANT_INFO *grant, const char *db, const char *table); bool sp_revoke_privileges(THD *thd, const char *sp_db, const char *sp_name, |