summaryrefslogtreecommitdiff
path: root/docs/reference/query-dsl
diff options
context:
space:
mode:
authorNicholas Knize <nknize@gmail.com>2017-02-06 14:25:48 -0600
committerNicholas Knize <nknize@gmail.com>2017-02-06 14:27:15 -0600
commitbc884c1e7b0a27b25d960ab5756c5d48517c7137 (patch)
tree2b4ee7b77c0f08862fb9f6b6b7bd84fd8b68002d /docs/reference/query-dsl
parent1c9fdfd1b34916965d646978c2d2dbc159edf247 (diff)
[Docs] Remove ignore_malformed from Geo Query DSL docs
This commit removes the ignore_malformed parameter from the Geo Query DSL documentation.
Diffstat (limited to 'docs/reference/query-dsl')
-rw-r--r--docs/reference/query-dsl/geo-bounding-box-query.asciidoc3
-rw-r--r--docs/reference/query-dsl/geo-distance-query.asciidoc13
-rw-r--r--docs/reference/query-dsl/geo-polygon-query.asciidoc3
3 files changed, 0 insertions, 19 deletions
diff --git a/docs/reference/query-dsl/geo-bounding-box-query.asciidoc b/docs/reference/query-dsl/geo-bounding-box-query.asciidoc
index 1307d0184f..6fce9487f3 100644
--- a/docs/reference/query-dsl/geo-bounding-box-query.asciidoc
+++ b/docs/reference/query-dsl/geo-bounding-box-query.asciidoc
@@ -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`).
diff --git a/docs/reference/query-dsl/geo-distance-query.asciidoc b/docs/reference/query-dsl/geo-distance-query.asciidoc
index eb419077a8..e961ed811e 100644
--- a/docs/reference/query-dsl/geo-distance-query.asciidoc
+++ b/docs/reference/query-dsl/geo-distance-query.asciidoc
@@ -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
diff --git a/docs/reference/query-dsl/geo-polygon-query.asciidoc b/docs/reference/query-dsl/geo-polygon-query.asciidoc
index 4f01da2548..189f135fa3 100644
--- a/docs/reference/query-dsl/geo-polygon-query.asciidoc
+++ b/docs/reference/query-dsl/geo-polygon-query.asciidoc
@@ -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`).