> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-fbfa8bee.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Icebergテーブルの各ファイルに関するメタデータを含むシステムテーブル

# system.iceberg_files

<div id="description">
  ## 説明
</div>

このシステムテーブルには、ClickHouse に存在する Icebergテーブルについて、ファイルごとのメタデータが格納されています。各テーブルの現在のスナップショットで参照されているデータファイルまたは削除ファイルごとに、1行が対応します。ClickHouse に Icebergテーブルが1つも存在しない場合、このテーブルは空になります。

<div id="columns">
  ## カラム
</div>

* `database` ([String](/ja/reference/data-types/index)) — データベース名。
* `table` ([String](/ja/reference/data-types/index)) — テーブル名。
* `snapshot_id` ([Int64](/ja/reference/data-types/index)) — ファイルが追加された時点のスナップショット ID。
* `content` ([Enum8('DATA' = 0, 'POSITION\_DELETE' = 1, 'EQUALITY\_DELETE' = 2)](/ja/reference/data-types/index)) — ファイル内容の種類。
* `file_path` ([String](/ja/reference/data-types/index)) — 解決済みのファイルのストレージパス。
* `file_format` ([String](/ja/reference/data-types/index)) — ファイルフォーマット。例: 'PARQUET'。
* `record_count` ([Int64](/ja/reference/data-types/index)) — ファイル内のレコード数。
* `file_size_in_bytes` ([Int64](/ja/reference/data-types/index)) — ファイルサイズ (バイト単位) 。
* `partition` ([String](/ja/reference/data-types/index)) — パーティション Tuple のテキスト表現。
* `schema_id` ([Int32](/ja/reference/data-types/index)) — このマニフェストエントリに対して解決されたスキーマ ID。
* `sequence_number` ([Int64](/ja/reference/data-types/index)) — マニフェストエントリの解決済みシーケンス番号 (フォーマット v1 では常に 0) 。
* `sort_order_id` ([Nullable(Int32)](/ja/reference/data-types/index)) — 指定されている場合のファイルのソート順 ID。
* `null_value_counts` ([Map(Int32, Int64)](/ja/reference/data-types/index)) — カラムごとの NULL 値の数 (カラム id -> count) 。
* `column_sizes` ([Map(Int32, Int64)](/ja/reference/data-types/index)) — カラムごとのディスク上のサイズ (バイト単位)  (カラム id -> bytes) 。
* `value_counts` ([Map(Int32, Int64)](/ja/reference/data-types/index)) — カラムごとの値の総数 (カラム id -> count) 。
* `equality_ids` ([Array(Int32)](/ja/reference/data-types/index)) — equality delete ファイルの equality フィールド ID (equality-delete 以外のファイルでは空) 。
