ClickHouse/docs/en/operations/system-tables/enabled-roles.md
BayoNet 1d0be5495c
DOCS-663: RBAC roles system tables (#12605)
* DOCSUP-1394 (#139)

* Added descriptions: system.roles, system.role_grants, system.current_roles, system.enabled_roles

* Add columns

* Add description for system.roles, system.role_grants, system.current_roles, system.enabled_roles

* Update docs/en/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update system-tables.md

* Update docs/en/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update system-tables.md

* Update docs/en/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Translate system.roles, system.role_grants, etc...

* Update docs/ru/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update docs/ru/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update docs/ru/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

* Update docs/ru/operations/system-tables.md

Co-authored-by: BayoNet <da-daos@yandex.ru>

Co-authored-by: Anna Devyatova <annadevyatova@yandex-team.ru>
Co-authored-by: BayoNet <da-daos@yandex.ru>

* CLICKHOUSEDOCS-663: Fixed links.

* CLICKHOUSEDOCS-663: Fixed markup.

Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
Co-authored-by: Anna Devyatova <annadevyatova@yandex-team.ru>
Co-authored-by: Sergei Shtykov <bayonet@yandex-team.ru>
2020-07-21 15:59:28 +03:00

847 B

#system.enabled_roles {#system_tables-enabled_roles} Contains all active roles at the moment, including current role of the current user and granted roles for current role.

Columns:

  • role_name (String)) — Role name.
  • with_admin_option (UInt8) — Flag that shows whether enabled_role is a role with ADMIN OPTION privilege.
  • is_current (UInt8) — Flag that shows whether enabled_role is a current role of a current user.
  • is_default (UInt8) — Flag that shows whether enabled_role is a default role.

Original article