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

# mysql_map_* 세션 설정

> mysql_map_* 생성 그룹에 속한 ClickHouse 세션 설정입니다.

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.settings](/docs/ko/reference/system-tables/settings)에서 확인할 수 있으며, [소스 코드](https://github.com/ClickHouse/ClickHouse/blob/master/src/Core/Settings.cpp)를 기반으로 자동 생성됩니다.

<div id="mysql_map_fixed_string_to_text_in_show_columns">
  ## mysql\_map\_fixed\_string\_to\_text\_in\_show\_columns
</div>

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

<VersionHistory rows={[{"id": "row-1","items": [{"label": "24.2"},{"label": "1"},{"label": "BI 도구를 ClickHouse에 연결하기 위한 구성 작업을 줄입니다."}]}]} />

활성화하면 [FixedString](/docs/ko/reference/data-types/fixedstring) ClickHouse 데이터 타입이 [SHOW COLUMNS](/docs/ko/reference/statements/show#show_columns)에서 `TEXT`로 표시됩니다.

MySQL wire 프로토콜을 통해 연결한 경우에만 적용됩니다.

* 0 - `BLOB`를 사용합니다.
* 1 - `TEXT`를 사용합니다.

<div id="mysql_map_string_to_text_in_show_columns">
  ## mysql\_map\_string\_to\_text\_in\_show\_columns
</div>

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

<VersionHistory rows={[{"id": "row-1","items": [{"label": "24.2"},{"label": "1"},{"label": "BI 도구를 ClickHouse에 연결하기 위한 구성 작업을 줄입니다."}]}]} />

활성화하면 [String](/docs/ko/reference/data-types/string) ClickHouse 데이터 타입이 [SHOW COLUMNS](/docs/ko/reference/statements/show#show_columns)에서 `TEXT`로 표시됩니다.

MySQL wire 프로토콜로 연결한 경우에만 적용됩니다.

* 0 - `BLOB`를 사용합니다.
* 1 - `TEXT`를 사용합니다.
