From 36c0179f54a43ae4aeb02d46e746c24b788d1e17 Mon Sep 17 00:00:00 2001 From: BayoNet Date: Tue, 10 Sep 2019 14:07:05 +0300 Subject: [PATCH] Fix of links in docs (#6884) * Typo fix. * Links fix. --- docs/en/operations/system_tables.md | 6 +++--- docs/en/query_language/system.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/operations/system_tables.md b/docs/en/operations/system_tables.md index 4e3386764fd..0b6481de3c1 100644 --- a/docs/en/operations/system_tables.md +++ b/docs/en/operations/system_tables.md @@ -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 diff --git a/docs/en/query_language/system.md b/docs/en/query_language/system.md index 648aa07f5e7..3ef504e46b3 100644 --- a/docs/en/query_language/system.md +++ b/docs/en/query_language/system.md @@ -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}