mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
21 lines
1.2 KiB
Markdown
21 lines
1.2 KiB
Markdown
---
|
||
slug: /en/operations/system-tables/azure_queue_settings
|
||
---
|
||
# azure_queue_settings
|
||
|
||
Contains information about settings of [AzureQueue](../../engines/table-engines/integrations/azure-queue.md) tables.
|
||
Available from `24.10` server version.
|
||
|
||
Columns:
|
||
|
||
- `database` ([String](../../sql-reference/data-types/string.md)) — Table name.
|
||
- `table` ([String](../../sql-reference/data-types/string.md)) — Database name.
|
||
- `name` ([String](../../sql-reference/data-types/string.md)) — Setting name.
|
||
- `value` ([String](../../sql-reference/data-types/string.md)) — Setting value.
|
||
- `changed` ([UInt8](../../sql-reference/data-types/int-uint.md#uint-ranges)) — Whether the setting was explicitly defined in the config or explicitly changed.
|
||
- `description` ([String](../../sql-reference/data-types/string.md)) — Setting description.
|
||
- `alterable` ([UInt8](../../sql-reference/data-types/int-uint.md#uint-ranges)) — Shows whether the setting can be changes via `ALTER TABLE ... MODIFY SETTING`.
|
||
- `0` — Current user can alter the setting.
|
||
- `1` — Current user can’t alter the setting.
|
||
- `type` ([String](../../sql-reference/data-types/string.md)) — Setting type (implementation specific string value).
|