Skip to content

[7.10] [DOCS] Sort field data types in docs (#64288) #64305

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions docs/reference/mapping/types.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Dates:: Date types, including <<date,`date`>> and
<<range,Range>>:: Range types, such as `long_range`, `double_range`,
`date_range`, and `ip_range`.
<<ip,`ip`>>:: IPv4 and IPv6 addresses.
<<version,Version>>:: Software versions. Supports https://semver.org/[Semantic Versioning]
<<version,`version`>>:: Software versions. Supports https://semver.org/[Semantic Versioning]
precedence rules.
{plugins}/mapper-murmur3.html[`murmur3`]:: Compute and stores hashes of
values.
Expand Down Expand Up @@ -140,17 +140,15 @@ include::types/date_nanos.asciidoc[]

include::types/dense-vector.asciidoc[]

include::types/histogram.asciidoc[]

include::types/flattened.asciidoc[]

include::types/geo-point.asciidoc[]

include::types/geo-shape.asciidoc[]

include::types/ip.asciidoc[]
include::types/histogram.asciidoc[]

include::types/version.asciidoc[]
include::types/ip.asciidoc[]

include::types/parent-join.asciidoc[]

Expand All @@ -174,10 +172,14 @@ include::types/rank-features.asciidoc[]

include::types/search-as-you-type.asciidoc[]

include::types/shape.asciidoc[]

include::types/sparse-vector.asciidoc[]

include::types/text.asciidoc[]

include::types/token-count.asciidoc[]

include::types/shape.asciidoc[]
include::types/unsigned_long.asciidoc[]

include::types/version.asciidoc[]
2 changes: 0 additions & 2 deletions docs/reference/mapping/types/numeric.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,3 @@ The following parameters are accepted by numeric types:
sorting) will behave as if the document had a value of +2.3+. High values
of `scaling_factor` improve accuracy but also increase space requirements.
This parameter is required.

include::unsigned_long.asciidoc[]
5 changes: 4 additions & 1 deletion docs/reference/mapping/types/unsigned_long.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
[testenv="basic"]

[[unsigned-long]]
=== Unsigned long data type
=== Unsigned long field type
++++
<titleabbrev>Unsigned long</titleabbrev>
++++
Unsigned long is a numeric field type that represents an unsigned 64-bit
integer with a minimum value of 0 and a maximum value of +2^64^-1+
(from 0 to 18446744073709551615 inclusive).
Expand Down