Links fix.

This commit is contained in:
BayoNet 2019-09-10 13:09:36 +03:00
parent a0211a80ad
commit 4cdb4d5ff2
2 changed files with 4 additions and 4 deletions

View File

@ -64,9 +64,9 @@ Please note that `errors_count` is updated once per query to the cluster, but `e
** See also **
- [Table engine Distributed](../../operations/table_engines/distributed.md)
- [distributed_replica_error_cap setting](../settings/settings.md#settings-distributed_replica_error_cap)
- [distributed_replica_error_half_life setting](../settings/settings.md#settings-distributed_replica_error_half_life)
- [Table engine Distributed](table_engines/distributed.md)
- [distributed_replica_error_cap setting](settings/settings.md#settings-distributed_replica_error_cap)
- [distributed_replica_error_half_life setting](settings/settings.md#settings-distributed_replica_error_half_life)
## system.columns

View File

@ -15,7 +15,7 @@
## RELOAD DICTIONARIES {#query_language-system-reload-dictionaries}
Reloads all dictionaries that have been successfully loaded before.
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 from tables with ENGINE = Dictionary. The `SYSTEM RELOAD DICTIONARIES` query reloads such dictionaries (LOADED).
By default, dictionaries are loaded lazily (see [dictionaries_lazy_load](../operations/server_settings/settings.md#server_settings-dictionaries_lazy_load)), so instead of being loaded automatically at startup, they are initialized on first access through dictGet function or SELECT from tables with 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}