> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.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/index)) — コーデック名。
* `method_byte` ([UInt8](/ja/reference/data-types/index)) — 圧縮ファイル内でコーデックを示すバイト。
* `is_compression` ([UInt8](/ja/reference/data-types/index)) — このコーデックが何らかの圧縮を行う場合は true。それ以外の場合は、圧縮に役立つ単なる変換である可能性があります。
* `is_generic_compression` ([UInt8](/ja/reference/data-types/index)) — このコーデックは、lz4 や zstd のような汎用圧縮アルゴリズムです。
* `is_encryption` ([UInt8](/ja/reference/data-types/index)) — このコーデックは暗号化を行います。
* `is_timeseries_codec` ([UInt8](/ja/reference/data-types/index)) — このコーデックは、浮動小数点の時系列データ向けのコーデックです。
* `is_experimental` ([UInt8](/ja/reference/data-types/index)) — このコーデックは実験的です。
* `description` ([String](/ja/reference/data-types/index)) — コーデックの概要説明。

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