> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# check_* MergeTree 테이블 설정

> check_* 생성 그룹에 속한 ClickHouse MergeTree 테이블 설정입니다.

export const SettingsInfoBlock = ({type, default_value, changeable_without_restart}) => {
  return <div className="not-prose" style={{
    display: "flex",
    flexWrap: "wrap",
    alignItems: "baseline",
    columnGap: "0.5rem",
    rowGap: "0.125rem",
    margin: "0.375rem 0",
    fontSize: "0.8125rem",
    lineHeight: "1.125rem"
  }}>
      <div style={{
    fontWeight: 600,
    opacity: 0.72
  }}>유형</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{type}</div>
      <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>기본값</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{default_value}</div>
      {changeable_without_restart && <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>
          재시작 없이 변경 가능
        </div>}
      {changeable_without_restart && <div style={{
    overflowWrap: "anywhere"
  }}>
          {changeable_without_restart}
        </div>}
    </div>;
};

이러한 설정은 [system.merge\_tree\_settings](/docs/ko/reference/system-tables/merge_tree_settings)에서 확인할 수 있으며, ClickHouse 소스에서 자동으로 생성됩니다.

<div id="check_delay_period">
  ## check\_delay\_period
</div>

<SettingsInfoBlock type="UInt64" default_value="60" />

더 이상 사용되지 않는 설정으로, 아무런 동작도 하지 않습니다.

<div id="check_sample_column_is_correct">
  ## check\_sample\_column\_is\_correct
</div>

<SettingsInfoBlock type="Bool" default_value="1" />

테이블 생성 시 샘플링 또는 샘플링 표현식에 사용되는 컬럼의 데이터 타입이 올바른지 검사할지 설정합니다. 데이터 타입은 부호 없는
[정수 타입](/docs/ko/reference/data-types/int-uint) 중 하나여야 합니다: `UInt8`, `UInt16`,
`UInt32`, `UInt64`.

가능한 값:

* `true`  — 검사가 활성화됩니다.
* `false` — 테이블 생성 시 검사가 비활성화됩니다.

기본값: `true`.

기본적으로 ClickHouse 서버는 테이블 생성 시 샘플링 또는 샘플링 표현식에 사용되는 컬럼의 데이터 타입을 검사합니다. 이미 잘못된 샘플링 표현식을 가진 테이블이 있고 서버 시작 중 예외가 발생하지 않도록 하려면 `check_sample_column_is_correct`를 `false`로 설정하십시오.
