> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.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](/ko/reference/data-types)) — 코덱 이름입니다.
* `method_byte` ([UInt8](/ko/reference/data-types)) — 압축 파일에서 코덱을 나타내는 바이트입니다.
* `is_compression` ([UInt8](/ko/reference/data-types)) — 이 코덱이 무언가를 압축하면 True입니다. 그렇지 않으면 압축에 도움이 되는 단순한 변환일 수 있습니다.
* `is_generic_compression` ([UInt8](/ko/reference/data-types)) — 이 코덱이 lz4, zstd와 같은 범용 압축 알고리즘이면 True입니다.
* `is_encryption` ([UInt8](/ko/reference/data-types)) — 이 코덱이 암호화를 수행하면 True입니다.
* `is_timeseries_codec` ([UInt8](/ko/reference/data-types)) — 이 코덱이 부동소수점 시계열용 코덱이면 True입니다.
* `is_experimental` ([UInt8](/ko/reference/data-types)) — 이 코덱이 실험적 기능이면 True입니다.
* `description` ([String](/ko/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.
```
