ClickHouse/docs/en/operations/system-tables/settings_profile_elements.md

31 lines
2.0 KiB
Markdown
Raw Normal View History

DOCSUP-1395: Add desc for system tables. (#13852) * Add desc for system tables. * Fixed links, add comments from the developer * Update docs/en/operations/system-tables/row_policies.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/system-tables/row_policies.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/system-tables/row_policies.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/system-tables/settings_profile_elements.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/system-tables/settings_profile_elements.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/system-tables/row_policies.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/system-tables/settings_profile_elements.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/en/operations/system-tables/users.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Link to Enum. * Added translation to russian * Update row_policies.md * Add lost description * Update docs/ru/operations/system-tables/grants.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/ru/operations/system-tables/grants.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/ru/operations/system-tables/row_policies.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Update docs/ru/operations/system-tables/row_policies.md Co-authored-by: BayoNet <da-daos@yandex.ru> * Additions * Fixed links Co-authored-by: Anna Devyatova <annadevyatova@yandex-team.ru> Co-authored-by: BayoNet <da-daos@yandex.ru>
2020-08-31 18:04:37 +00:00
# system.settings_profile_elements {#system_tables-settings_profile_elements}
Describes the content of the settings profile:
- Сonstraints.
- Roles and users that the setting applies to.
- Parent settings profiles.
Columns:
- `profile_name` ([Nullable](../../sql-reference/data-types/nullable.md)([String](../../sql-reference/data-types/string.md))) — Setting profile name.
- `user_name` ([Nullable](../../sql-reference/data-types/nullable.md)([String](../../sql-reference/data-types/string.md))) — User name.
- `role_name` ([Nullable](../../sql-reference/data-types/nullable.md)([String](../../sql-reference/data-types/string.md))) — Role name.
- `index` ([UInt64](../../sql-reference/data-types/int-uint.md)) — Sequential number of the settings profile element.
- `setting_name` ([Nullable](../../sql-reference/data-types/nullable.md)([String](../../sql-reference/data-types/string.md))) — Setting name.
- `value` ([Nullable](../../sql-reference/data-types/nullable.md)([String](../../sql-reference/data-types/string.md))) — Setting value.
- `min` ([Nullable](../../sql-reference/data-types/nullable.md)([String](../../sql-reference/data-types/string.md))) — The minimum value of the setting. `NULL` if not set.
- `max` ([Nullable](../../sql-reference/data-types/nullable.md)([String](../../sql-reference/data-types/string.md))) — The maximum value of the setting. NULL if not set.
- `readonly` ([Nullable](../../sql-reference/data-types/nullable.md)([UInt8](../../sql-reference/data-types/int-uint.md#uint-ranges))) — Profile that allows only read queries.
- `inherit_profile` ([Nullable](../../sql-reference/data-types/nullable.md)([String](../../sql-reference/data-types/string.md))) — A parent profile for this setting profile. `NULL` if not set. Setting profile will inherit all the settings' values and constraints (`min`, `max`, `readonly`) from its parent profiles.
[Original article](https://clickhouse.tech/docs/en/operations/system_tables/settings_profile_elements) <!--hide-->