Skip to content

Commit

Permalink
Update binary.md (opensearch-project#8142)
Browse files Browse the repository at this point in the history
According the code, the default value of `hasDocValues` is false

https://github.com/opensearch-project/OpenSearch/blob/03d9a249e47b99b33c6de3625f43b12bef29c1cb/server/src/main/java/org/opensearch/index/mapper/BinaryFieldMapper.java#L85

Signed-off-by: kkewwei <[email protected]>
Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Eric Pugh <[email protected]>
  • Loading branch information
2 people authored and epugh committed Sep 12, 2024
1 parent cbd76dd commit 45ee755
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _field-types/supported-field-types/binary.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ The following table lists the parameters accepted by binary field types. All par

Parameter | Description
:--- | :---
`doc_values` | A Boolean value that specifies whether the field should be stored on disk so that it can be used for aggregations, sorting, or scripting. Optional. Default is `true`.
`store` | A Boolean value that specifies whether the field value should be stored and can be retrieved separately from the _source field. Optional. Default is `false`.
`doc_values` | A Boolean value that specifies whether the field should be stored on disk so that it can be used for aggregations, sorting, or scripting. Optional. Default is `false`.
`store` | A Boolean value that specifies whether the field value should be stored and can be retrieved separately from the _source field. Optional. Default is `false`.

0 comments on commit 45ee755

Please sign in to comment.