浏览代码

[Docs] Specify field types not supporting doc values (#49041)

The `string` type (with option `analyzed`) has been replaced by `text` after `6.0`, 
also the `annonated_text` field do not support doc values and should be mentioned.
Antoine Garcia 5 年之前
父节点
当前提交
529ebea2b9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/reference/mapping/params/doc-values.asciidoc

+ 1 - 1
docs/reference/mapping/params/doc-values.asciidoc

@@ -15,7 +15,7 @@ Doc values are the on-disk data structure, built at document index time, which
 makes this data access pattern possible. They store the same values as the
 makes this data access pattern possible. They store the same values as the
 `_source` but in a column-oriented fashion that is way more efficient for
 `_source` but in a column-oriented fashion that is way more efficient for
 sorting and aggregations. Doc values are supported on almost all field types,
 sorting and aggregations. Doc values are supported on almost all field types,
-with the __notable exception of `analyzed` string fields__.
+with the __notable exception of `text` and `annotated_text` fields__.
 
 
 All fields which support doc values have them enabled by default. If you are
 All fields which support doc values have them enabled by default. If you are
 sure that you don't need to sort or aggregate on a field, or access the field
 sure that you don't need to sort or aggregate on a field, or access the field