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

# مصدر قاموس Null

> هيّئ مصدر قاموس Null (فارغ) في ClickHouse لأغراض الاختبار.

مصدر خاص يمكن استخدامه لإنشاء قواميس وهمية (فارغة).
قد تكون القواميس الوهمية مفيدة لأغراض الاختبار أو في الإعدادات التي تتضمن عُقد بيانات وعُقد استعلام منفصلة مع جداول موزعة.

```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);
```
