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

> キュー内の圧縮コーデックに関する情報を含むシステムテーブル。

# system.codecs

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

圧縮および暗号化コーデックに関する情報が含まれています。

この表を使用すると、利用可能な圧縮および暗号化コーデックに関する情報を確認できます

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

* `name` ([String](/ja/reference/data-types)) — コーデック名。
* `method_byte` ([UInt8](/ja/reference/data-types)) — 圧縮ファイル内でコーデックを示すバイト。
* `is_compression` ([UInt8](/ja/reference/data-types)) — このコーデックが何らかのデータを圧縮する場合は True。それ以外の場合は、圧縮を補助するための単なる変換であることがあります。
* `is_generic_compression` ([UInt8](/ja/reference/data-types)) — このコーデックが lz4 や zstd のような汎用圧縮アルゴリズムである場合は True。
* `is_encryption` ([UInt8](/ja/reference/data-types)) — このコーデックが暗号化を行う場合は True。
* `is_timeseries_codec` ([UInt8](/ja/reference/data-types)) — このコーデックが浮動小数点の時系列向けコーデックである場合は True。
* `is_experimental` ([UInt8](/ja/reference/data-types)) — このコーデックが実験的機能である場合は True。
* `description` ([String](/ja/reference/data-types)) — コーデックの概要。

<div id="example">
  ## 例
</div>

```sql title="Query" theme={null}
SELECT * FROM system.codecs WHERE name='LZ4'
```

```text title="Response" theme={null}
Row 1:
──────
name:                   LZ4
method_byte:            130
is_compression:         1
is_generic_compression: 1
is_encryption:          0
is_timeseries_codec:    0
is_experimental:        0
description:            Extremely fast; good compression; balanced speed and efficiency.
```
