mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 04:32:33 +00:00
1ae28c473e
Updating the column name `readonly` for `writability` according to the current state of this table.
Reference: a0d25fdd54/tests/queries/0_stateless/02117_show_create_table_system.reference (L1021)
1.9 KiB
1.9 KiB
slug |
---|
/en/operations/system-tables/settings_profile_elements |
settings_profile_elements
Describes the content of the settings profile:
- Сonstraints.
- Roles and users that the setting applies to.
- Parent settings profiles.
Columns:
-
index
(UInt64) — Sequential number of the settings profile element. -
min
(Nullable(String)) — The minimum value of the setting.NULL
if not set. -
max
(Nullable(String)) — The maximum value of the setting. NULL if not set. -
writability
(Nullable(Enum8('WRITABLE' = 0, 'CONST' = 1, 'CHANGEABLE_IN_READONLY' = 2))) — Sets the settings constraint writability kind. -
inherit_profile
(Nullable(String)) — 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.