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

# Null dictionary source

> Configure a Null (empty) dictionary source in ClickHouse for testing.

A special source that can be used to create dummy (empty) dictionaries.
Dummy dictionaries can be useful for testing purposes or for setups with separate data and query nodes with distributed tables.

```sql theme={null}
CREATE DICTIONARY null_dict (
    id              UInt64,
    val             UInt8,
    default_val     UInt8 DEFAULT 123,
    nullable_val    Nullable(UInt8)
)
PRIMARY KEY id
SOURCE(NULL())
LAYOUT(FLAT())
LIFETIME(0);
```
