diff options
author | Vicențiu Ciorbaru <cvicentiu@gmail.com> | 2013-10-18 05:11:16 -0700 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-10-18 05:11:16 -0700 |
commit | fe521dc28efe80b9aae45cc4d8f8c3ee6fe4bb52 (patch) | |
tree | 6d9ceda6b903eb3a65a8e9f124fedc773be0d040 /sql/table.h | |
parent | 2060937353bfa81fa5bd67d28d14bc339ea55ec4 (diff) | |
download | mariadb-git-fe521dc28efe80b9aae45cc4d8f8c3ee6fe4bb52.tar.gz |
Implemented _non recursive_ role specific grants for table/column level privileges
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/table.h b/sql/table.h index 1e29ca9d095..99dda3b6bf1 100644 --- a/sql/table.h +++ b/sql/table.h @@ -251,7 +251,8 @@ typedef struct st_grant_info @details The version of this copy is found in GRANT_INFO::version. */ - GRANT_TABLE *grant_table; + GRANT_TABLE *grant_table_user; + GRANT_TABLE *grant_table_role; /** @brief Used for cache invalidation when caching privilege information. |