mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
0a9f6b1805
* Documentation for #10387, upd syntax by issues #12311, #12312 * Update docs/ru/sql-reference/statements/show.md Co-authored-by: Anna Devyatova <annadevyatova@yandex-team.ru> Co-authored-by: BayoNet <da-daos@yandex.ru>
1.3 KiB
1.3 KiB
#system.role_grants {#system_tables-role_grants}
Contains the role grants for users and roles. To add entries to this table, use GRANT role TO user
.
Columns:
-
granted_role_name
(String) — Name of role granted to therole_name
role. To grant one role to another one useGRANT role1 TO role2
. -
granted_role_is_default
(UInt8) — Flag that shows whethergranted_role
is a default role. Possible values:- 1 —
granted_role
is a default role. - 0 —
granted_role
is not a default role.
- 1 —
-
with_admin_option
(UInt8) — Flag that shows whethergranted_role
is a role with ADMIN OPTION privilege. Possible values:- 1 — The role has
ADMIN OPTION
privilege. - 0 — The role without
ADMIN OPTION
privilege.
- 1 — The role has