> ## 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 table containing information about ClickHouse server's build options.

# system.build_options

<h2 id="description">
  Description
</h2>

Contains information about the ClickHouse server's build options.

<h2 id="columns">
  Columns
</h2>

* `name` ([String](/reference/data-types)) — Name of the build option.
* `value` ([String](/reference/data-types)) — Value of the build option.

<h2 id="example">
  Example
</h2>

```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     │
└──────────────────┴───────┘
```
