Skip to content

Commit

Permalink
Added note to docs about behaviour when flag set to false.
Browse files Browse the repository at this point in the history
  • Loading branch information
markharwood committed Oct 21, 2020
1 parent 17d3027 commit 87423ee
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docs/reference/query-dsl/prefix-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ information, see the <<query-dsl-multi-term-rewrite, `rewrite` parameter>>.

`case_insensitive`::
(Optional, boolean) allows ASCII case insensitive matching of the
value with the indexed field values when set to true.
value with the indexed field values when set to true. Default is false which means
the case sensitivity of matching depends on the underlying field's mapping.

[[prefix-query-notes]]
==== Notes
Expand Down
3 changes: 2 additions & 1 deletion docs/reference/query-dsl/regexp-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ expression syntax>>.

`case_insensitive`::
(Optional, boolean) allows case insensitive matching of the regular expression
value with the indexed field values when set to true.
value with the indexed field values when set to true. Default is false which means
the case sensitivity of matching depends on the underlying field's mapping.

`max_determinized_states`::
+
Expand Down
3 changes: 2 additions & 1 deletion docs/reference/query-dsl/term-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ increases the relevance score.

`case_insensitive`::
(Optional, boolean) allows ASCII case insensitive matching of the
value with the indexed field values when set to true.
value with the indexed field values when set to true. Default is false which means
the case sensitivity of matching depends on the underlying field's mapping

[[term-query-notes]]
==== Notes
Expand Down
3 changes: 2 additions & 1 deletion docs/reference/query-dsl/wildcard-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ increases the relevance score.

`case_insensitive`::
(Optional, boolean) allows case insensitive matching of the
pattern with the indexed field values when set to true.
pattern with the indexed field values when set to true. Default is false which means
the case sensitivity of matching depends on the underlying field's mapping.

[[wildcard-query-notes]]
==== Notes
Expand Down

0 comments on commit 87423ee

Please sign in to comment.