This commit is contained in:
parent
e4b4351a43
commit
5de05ba69c
|
@ -114,7 +114,7 @@ EQL operators are case-sensitive by default.
|
||||||
|
|
||||||
[source,eql]
|
[source,eql]
|
||||||
----
|
----
|
||||||
< <= == != >= >
|
< <= == : != >= >
|
||||||
----
|
----
|
||||||
|
|
||||||
`<` (less than)::
|
`<` (less than)::
|
||||||
|
@ -125,14 +125,19 @@ to the right. Otherwise returns `false`.
|
||||||
Returns `true` if the value to the left of the operator is less than or equal to
|
Returns `true` if the value to the left of the operator is less than or equal to
|
||||||
the value to the right. Otherwise returns `false`.
|
the value to the right. Otherwise returns `false`.
|
||||||
|
|
||||||
`==` (equal)::
|
`==` (equal, case-sensitive)::
|
||||||
Returns `true` if the values to the left and right of the operator are equal.
|
Returns `true` if the values to the left and right of the operator are equal.
|
||||||
Otherwise returns `false`.
|
Otherwise returns `false`. For strings, matching is case-sensitive.
|
||||||
+
|
|
||||||
|
`:` (equal, case-insensitive)::
|
||||||
|
Returns `true` if strings to the left and right of the operator are equal.
|
||||||
|
Otherwise returns `false`. Matching is case-insensitive and can only be used to
|
||||||
|
compare strings.
|
||||||
|
|
||||||
[IMPORTANT]
|
[IMPORTANT]
|
||||||
====
|
====
|
||||||
Avoid using the `==` operator to perform exact matching on <<text,`text`>> field
|
Avoid using the `==` or `:` operators to perform exact matching on
|
||||||
values.
|
<<text,`text`>> field values.
|
||||||
|
|
||||||
By default, {es} changes the values of `text` fields as part of <<analysis,
|
By default, {es} changes the values of `text` fields as part of <<analysis,
|
||||||
analysis>>. This can make finding exact matches for `text` field values
|
analysis>>. This can make finding exact matches for `text` field values
|
||||||
|
@ -142,19 +147,21 @@ To search `text` fields, consider using a <<eql-search-filter-query-dsl,query
|
||||||
DSL filter>> that contains a <<query-dsl-match-query,`match`>> query.
|
DSL filter>> that contains a <<query-dsl-match-query,`match`>> query.
|
||||||
====
|
====
|
||||||
|
|
||||||
`!=` (not equal)::
|
`!=` (not equal, case-sensitive)::
|
||||||
Returns `true` if the values to the left and right of the operator are not
|
Returns `true` if the values to the left and right of the operator are not
|
||||||
equal. Otherwise returns `false`.
|
equal. Otherwise returns `false`. For strings, matching is case-sensitive.
|
||||||
|
|
||||||
`>=` (greater than or equal) ::
|
`>=` (greater than or equal) ::
|
||||||
Returns `true` if the value to the left of the operator is greater than or equal
|
Returns `true` if the value to the left of the operator is greater than or equal
|
||||||
to the value to the right. Otherwise returns `false`.
|
to the value to the right. Otherwise returns `false`. When comparing strings,
|
||||||
|
the operator uses a case-sensitive lexicographic order.
|
||||||
|
|
||||||
`>` (greater than)::
|
`>` (greater than)::
|
||||||
Returns `true` if the value to the left of the operator is greater than the
|
Returns `true` if the value to the left of the operator is greater than the
|
||||||
value to the right. Otherwise returns `false`.
|
value to the right. Otherwise returns `false`. When comparing strings,
|
||||||
|
the operator uses a case-sensitive lexicographic order.
|
||||||
|
|
||||||
NOTE: `=` is not supported as an equality operator. Use `==` instead.
|
NOTE: `=` is not supported as an equal operator. Use `==` or `:` instead.
|
||||||
|
|
||||||
You cannot chain comparison operators. Instead, use a
|
You cannot chain comparison operators. Instead, use a
|
||||||
<<eql-syntax-logical-operators,logical operator>> between comparisons. For
|
<<eql-syntax-logical-operators,logical operator>> between comparisons. For
|
||||||
|
@ -363,19 +370,6 @@ use a regular string with the `\"` escape sequence.
|
||||||
"String containing \"\"\" three double quotes"
|
"String containing \"\"\" three double quotes"
|
||||||
----
|
----
|
||||||
|
|
||||||
[discrete]
|
|
||||||
[[eql-syntax-wildcards]]
|
|
||||||
===== Wildcards
|
|
||||||
|
|
||||||
When comparing strings using the `==` or `!=` operators, you can use the `*`
|
|
||||||
operator within the string to match specific patterns:
|
|
||||||
|
|
||||||
[source,eql]
|
|
||||||
----
|
|
||||||
field == "example*wildcard"
|
|
||||||
field != "example*wildcard"
|
|
||||||
----
|
|
||||||
|
|
||||||
[discrete]
|
[discrete]
|
||||||
[[eql-sequences]]
|
[[eql-sequences]]
|
||||||
=== Sequences
|
=== Sequences
|
||||||
|
|
Loading…
Reference in New Issue