[Docs] Remove ignore_malformed from Geo Query DSL docs
This commit removes the ignore_malformed parameter from the Geo Query DSL documentation.
This commit is contained in:
parent
1c9fdfd1b3
commit
bc884c1e7b
|
@ -76,9 +76,6 @@ GET /_search
|
|||
|Option |Description
|
||||
|`_name` |Optional name field to identify the filter
|
||||
|
||||
|`ignore_malformed` |deprecated[5.0.0,Use `validation_method` instead] Set to `true` to
|
||||
accept geo points with invalid latitude or longitude (default is `false`).
|
||||
|
||||
|`validation_method` |Set to `IGNORE_MALFORMED` to
|
||||
accept geo points with invalid latitude or longitude, set to
|
||||
`COERCE` to also try to infer correct latitude or longitude. (default is `STRICT`).
|
||||
|
|
|
@ -193,23 +193,10 @@ The following are options allowed on the filter:
|
|||
|
||||
How to compute the distance. Can either be `arc` (default), or `plane` (faster, but inaccurate on long distances and close to the poles).
|
||||
|
||||
`optimize_bbox`::
|
||||
|
||||
Whether to use the optimization of first running a bounding box check
|
||||
before the distance check. Defaults to `memory` which will do in memory
|
||||
checks. Can also have values of `indexed` to use indexed value check (make
|
||||
sure the `geo_point` type index lat lon in this case), or `none` which
|
||||
disables bounding box optimization. deprecated[2.2]
|
||||
|
||||
`_name`::
|
||||
|
||||
Optional name field to identify the query
|
||||
|
||||
`ignore_malformed`::
|
||||
|
||||
deprecated[5.0.0,Use `validation_method` instead] Set to `true` to accept geo points with invalid latitude or
|
||||
longitude (default is `false`).
|
||||
|
||||
`validation_method`::
|
||||
|
||||
Set to `IGNORE_MALFORMED` to accept geo points with invalid latitude or
|
||||
|
|
|
@ -38,9 +38,6 @@ GET /_search
|
|||
|Option |Description
|
||||
|`_name` |Optional name field to identify the filter
|
||||
|
||||
|`ignore_malformed` |deprecated[5.0.0,Use `validation_method` instead] Set to `true` to accept geo points with invalid latitude or
|
||||
longitude (default is `false`).
|
||||
|
||||
|`validation_method` |Set to `IGNORE_MALFORMED` to accept geo points with
|
||||
invalid latitude or longitude, `COERCE` to try and infer correct latitude
|
||||
or longitude, or `STRICT` (default is `STRICT`).
|
||||
|
|
Loading…
Reference in New Issue