Docs fixes

This commit is contained in:
alesapin 2019-06-07 14:06:23 +03:00
parent bd6e777480
commit 00a1ac64a4
5 changed files with 6 additions and 5 deletions

View File

@ -35,7 +35,7 @@ The dictionary config file has the following format:
You can [configure](external_dicts_dict.md) any number of dictionaries in the same file. The file format is preserved even if there is only one dictionary (i.e. `<yandex><dictionary> <!--configuration -> </dictionary></yandex>`).
See also "[Functions for working with external dictionaries](../functions/ext_dict_functions.md#ext_dict_functions)".
See also "[Functions for working with external dictionaries](../functions/ext_dict_functions.md)".
!!! attention
You can convert values for a small dictionary by describing it in a `SELECT` query (see the [transform](../functions/other_functions.md) function). This functionality is not related to external dictionaries.

View File

@ -28,6 +28,7 @@ def test_single_page(input_path, lang):
if href and href.startswith('#'):
if href[1:] not in anchor_points:
links_to_nowhere += 1
logging.info("Tag %s", tag)
logging.info('Link to nowhere: %s' % href)
if duplicate_anchor_points:
@ -37,7 +38,7 @@ def test_single_page(input_path, lang):
sys.exit(10)
assert len(anchor_points) > 10, 'Html parsing is probably broken'
if __name__ == '__main__':
logging.basicConfig(

View File

@ -60,7 +60,7 @@ WHERE name = 'products'
└──────────┴──────┴────────┴─────────────────┴─────────────────┴─────────────────┴───────────────┴─────────────────┘
```
你可以使用 [dictGet*](../../query_language/functions/ext_dict_functions.md#ext_dict_functions) 函数来获取这种格式的字典数据。
你可以使用 [dictGet*](../../query_language/functions/ext_dict_functions.md) 函数来获取这种格式的字典数据。
当你需要获取原始数据,或者是想要使用 `JOIN` 操作的时候,这种视图并没有什么帮助。对于这些情况,你可以使用 `Dictionary` 引擎,它可以将字典数据展示在表中。

View File

@ -79,7 +79,7 @@ URL的层级与URLHierarchy中的层级相同。 此函数被用于Yandex.Metric
计算字符串的HiveHash。
接受一个String类型的参数。返回Int32。
与[JavaHash](hash_functions-javahash)相同,但不会返回负数。
与[JavaHash](#hash_functions-javahash)相同,但不会返回负数。
## metroHash64

View File

@ -103,6 +103,6 @@ SELECT
## 另请参阅
- [dictGetUUID](ext_dict_functions.md)
- [dictGetUUIDOrDefault](ext_dict_functions#ext_dict_functions_dictGetTOrDefault)
- [dictGetUUIDOrDefault](ext_dict_functions.md#ext_dict_functions_dictGetTOrDefault)
[来源文章](https://clickhouse.yandex/docs/en/query_language/functions/uuid_function/) <!--hide-->