Update docs/en/query_language/system.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
This commit is contained in:
Denis Zhuravlev 2019-09-06 20:08:29 -03:00 committed by GitHub
parent 2287c590f1
commit b8f1ebfe62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@
## RELOAD DICTIONARIES {#query_language-system-reload-dictionaries}
Reloads all dictionaries that have been successfully downloaded before.
By default, lazy loading is enabled [dictionaries_lazy_load](../operations/server_settings/settings.md#dictionaries-lazy-load), so dictionaries are not loaded automatically at startup, but only when they first access through dictGet or SELECT to ENGINE = Dictionary. `system reload dictionaries` command reloads such dictionaries (LOADED).
By default, dictionaries are loaded lazily (see [dictionaries_lazy_load](../operations/server_settings/settings.md#dictionaries-lazy-load)), so instead of being loaded automatically at startup, they are initialized on first access through dictGet function or SELECT to ENGINE = Dictionary. The `SYSTEM RELOAD DICTIONARIES` query reloads such dictionaries (LOADED).
Always returns `Ok.` regardless of the result of the dictionary update.
## RELOAD DICTIONARY dictionary_name {#query_language-system-reload-dictionary}