mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-03 09:29:11 +00:00
This changes only the query parsing behavior to be strict when searching on boolean values. We continue to accept the variety of values during index time, but searches will only be parsed using `"true"` or `"false"`. Resolves #21545
12 lines
427 B
Plaintext
12 lines
427 B
Plaintext
[[breaking_60_search_changes]]
|
|
=== Search and Query DSL changes
|
|
|
|
==== Changes to queries
|
|
|
|
* The `collect_payloads` parameter of the `span_near` query has been removed. Payloads will be
|
|
loaded when needed.
|
|
|
|
* Queries on boolean fields now strictly parse boolean-like values. This means
|
|
only the strings `"true"` and `"false"` will be parsed into their boolean
|
|
counterparts. Other strings will cause an error to be thrown.
|