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

> 시스템 Iceberg 스냅샷 이력

# system.iceberg_history

<div id="description">
  ## 설명
</div>

이 시스템 테이블에는 ClickHouse에 존재하는 Iceberg 테이블의 스냅샷 이력이 저장됩니다. ClickHouse에 Iceberg 테이블이 없으면 이 테이블은 비어 있습니다.

<div id="columns">
  ## 컬럼
</div>

* `database` ([String](/docs/ko/reference/data-types/index)) — 데이터베이스 이름.
* `table` ([String](/docs/ko/reference/data-types/index)) — 테이블 이름.
* `made_current_at` ([Nullable(DateTime64(3))](/docs/ko/reference/data-types/index)) — 이 스냅샷이 현재 스냅샷으로 설정된 날짜 및 시간.
* `snapshot_id` ([UInt64](/docs/ko/reference/data-types/index)) — 스냅샷을 식별하는 데 사용되는 스냅샷 ID.
* `parent_id` ([UInt64](/docs/ko/reference/data-types/index)) — 이 스냅샷의 부모 ID.
* `is_current_ancestor` ([UInt8](/docs/ko/reference/data-types/index)) — 이 스냅샷이 현재 스냅샷의 상위 스냅샷인지 나타내는 플래그.
* `operation` ([Enum8('UNKNOWN' = -1, 'APPEND' = 0, 'OVERWRITE' = 1, 'DELETE' = 2, 'REPLACE' = 3)](/docs/ko/reference/data-types/index)) — 스냅샷 작업(APPEND, OVERWRITE, DELETE, REPLACE, UNKNOWN)입니다. UNKNOWN 상태는 요약을 읽을 수 없었거나 요약이 비어 있음을 의미합니다(v1에서는 선택 사항임). 올바른 `operation` 필드는 필수입니다.
* `summary` ([Map(String, String)](/docs/ko/reference/data-types/index)) — 스냅샷 요약 필드.
