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

> ClickHouse serverのビルドオプションに関する情報が含まれるシステムテーブル。

# system.build_options

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

ClickHouse server のビルドオプションに関する情報が含まれています。

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

* `name` ([String](/ja/reference/data-types)) — ビルドオプション名。
* `value` ([String](/ja/reference/data-types)) — ビルドオプションの値。

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

```sql theme={null}
SELECT * FROM system.build_options LIMIT 5
```

```text theme={null}
┌─name─────────────┬─value─┐
│ USE_BROTLI       │ 1     │
│ USE_BZIP2        │ 1     │
│ USE_CAPNP        │ 1     │
│ USE_CASSANDRA    │ 1     │
│ USE_DATASKETCHES │ 1     │
└──────────────────┴───────┘
```
