Translated to russian.

Some fixes and updates.
This commit is contained in:
Alexey 2021-07-21 19:59:47 +00:00
parent 057298840b
commit 182bffbf82
2 changed files with 16 additions and 5 deletions

View File

@ -280,13 +280,13 @@ Default value: `0`.
## check_sample_column_is_correct {#check_sample_column_is_correct}
Enables check at table creation, that data type of column for sampling or sampling expression is correct. The data type must be one of unsigned [integer types](../sql-reference/data-types/int-uint.md): `UInt8`, `UInt16`, `UInt32`, `UInt64`.
Enables the check at table creation, that the data type of a column for sampling or sampling expression is correct. The data type must be one of unsigned [integer types](../../sql-reference/data-types/int-uint.md): `UInt8`, `UInt16`, `UInt32`, `UInt64`.
Possible values:
- `true` — The check is enabled.
- `false` — The check is disabled.
- true — The check is enabled.
- false — The check is disabled at table creation.
Default value: `true`.
By default the ClickHouse server checks at table creation the data type of column for sampling or sampling expression. If you already have tables with incorrect sampling expression, set this setting to `false` to make ClickHouse server not to raise exception when the server is starting.
By default the ClickHouse server checks at table creation the data type of a column for sampling or sampling expression. If you already have tables with incorrect sampling expression and do not want the server to raise an exception during startup, set `check_sample_column_is_correct` to `false`.

View File

@ -277,4 +277,15 @@ Eсли суммарное число активных кусков во все
Значение по умолчанию: `0`.
[Original article](https://clickhouse.tech/docs/ru/operations/settings/merge_tree_settings/) <!--hide-->
## check_sample_column_is_correct {#check_sample_column_is_correct}
Разрешает проверку при создании таблицы, что тип данных столбца для сэмплирования или выражения сэмплирования верный. Тип данных должен быть одним из [целочисленных типов](../../sql-reference/data-types/int-uint.md): `UInt8`, `UInt16`, `UInt32`, `UInt64`.
Возможные значения:
- true — проверка включена.
- false — проверка при создании таблицы не проводится.
Значение по умолчанию: `true`.
По умолчанию сервер ClickHouse при создании таблицы проверяет тип данных столбца для сэмплирования или выражения сэмплирования. Если уже существуют таблицы со столбцом с недопустимым типом данных, то чтобы не возникало исключение при запуске сервера ClickHouse, установите `check_sample_column_is_correct` в значение `false`.