mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 05:03:20 +00:00
28 lines
684 B
Markdown
28 lines
684 B
Markdown
|
---
|
||
|
slug: /en/operations/system-tables/build_options
|
||
|
---
|
||
|
# build_options
|
||
|
|
||
|
Contains information about the ClickHouse server's build options.
|
||
|
|
||
|
Columns:
|
||
|
|
||
|
- `name` (String) — Name of the build option, e.g. `USE_ODBC`
|
||
|
- `value` (String) — Value of the build option, e.g. `1`
|
||
|
|
||
|
**Example**
|
||
|
|
||
|
``` sql
|
||
|
SELECT * FROM system.build_options LIMIT 5
|
||
|
```
|
||
|
|
||
|
``` text
|
||
|
┌─name─────────────┬─value─┐
|
||
|
│ USE_BROTLI │ 1 │
|
||
|
│ USE_BZIP2 │ 1 │
|
||
|
│ USE_CAPNP │ 1 │
|
||
|
│ USE_CASSANDRA │ 1 │
|
||
|
│ USE_DATASKETCHES │ 1 │
|
||
|
└──────────────────┴───────┘
|
||
|
```
|