> ## 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.

# escape_* MergeTree 테이블 설정

> escape_* 생성 그룹에 속한 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="escape_index_filenames">
  ## escape\_index\_filenames
</div>

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

<VersionHistory rows={[{"id": "row-1","items": [{"label": "26.1"},{"label": "1"},{"label": "인덱스용으로 생성된 파일 이름에서 비 ASCII 문자를 이스케이프합니다"}]}]} />

26.1 이전에는 보조 인덱스용으로 생성된 파일 이름에서 특수 기호를 이스케이프하지 않았습니다. 이로 인해 인덱스 이름에 포함된 일부 문자 때문에 손상된 파트가 발생할 수 있었습니다. 이 설정은 호환성을 위해서만 추가되었습니다. 이름에 비 ASCII 문자가 포함된 인덱스가 있는 오래된 파트를 읽는 경우가 아니라면 변경하지 마십시오.

<div id="escape_variant_subcolumn_filenames">
  ## escape\_variant\_subcolumn\_filenames
</div>

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

<VersionHistory rows={[{"id": "row-1","items": [{"label": "25.11"},{"label": "1"},{"label": "Wide 파트에서 Variant 타입 서브컬럼용으로 생성되는 파일 이름의 특수 기호를 이스케이프 처리"}]}]} />

MergeTree 테이블의 Wide 파트에서 Variant 데이터 타입 서브컬럼용으로 생성되는 파일 이름의 특수 기호를 이스케이프 처리합니다. 호환성을 위해 필요합니다.
