From bc884c1e7b0a27b25d960ab5756c5d48517c7137 Mon Sep 17 00:00:00 2001 From: Nicholas Knize Date: Mon, 6 Feb 2017 14:25:48 -0600 Subject: [Docs] Remove ignore_malformed from Geo Query DSL docs This commit removes the ignore_malformed parameter from the Geo Query DSL documentation. --- docs/reference/query-dsl/geo-bounding-box-query.asciidoc | 3 --- docs/reference/query-dsl/geo-distance-query.asciidoc | 13 ------------- docs/reference/query-dsl/geo-polygon-query.asciidoc | 3 --- 3 files changed, 19 deletions(-) (limited to 'docs/reference/query-dsl') 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`). -- cgit v1.2.3