Skip to content

Commit babf3eb

Browse files
authored
[DOCS] EQL: Remove duplicate case-sensitivity info (#68860)
1 parent 6cf33b1 commit babf3eb

File tree

1 file changed

+10
-16
lines changed

1 file changed

+10
-16
lines changed

docs/reference/eql/syntax.asciidoc

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,13 @@ the value to the right. Otherwise returns `false`.
125125

126126
`==` (equal, case-sensitive)::
127127
Returns `true` if the values to the left and right of the operator are equal.
128-
Otherwise returns `false`. For strings, matching is case-sensitive. Wildcards
129-
are not supported.
128+
Otherwise returns `false`. Wildcards are not supported.
130129

131130
`:` (equal, case-insensitive)::
132131
Returns `true` if strings to the left and right of the operator are equal.
133-
Otherwise returns `false`. Matching is case-insensitive and can only be used to
134-
compare strings. Supports <<eql-syntax-wildcards,wildcards>> and
135-
<<eql-syntax-lookup-operators,list lookups>>.
132+
Otherwise returns `false`. Can only be used to compare strings. Supports
133+
<<eql-syntax-wildcards,wildcards>> and <<eql-syntax-lookup-operators,list
134+
lookups>>.
136135

137136
[IMPORTANT]
138137
====
@@ -149,8 +148,7 @@ DSL filter>> that contains a <<query-dsl-match-query,`match`>> query.
149148

150149
`!=` (not equal, case-sensitive)::
151150
Returns `true` if the values to the left and right of the operator are not
152-
equal. Otherwise returns `false`. For strings, matching is case-sensitive.
153-
Wildcards are not supported.
151+
equal. Otherwise returns `false`. Wildcards are not supported.
154152

155153
`>=` (greater than or equal) ::
156154
Returns `true` if the value to the left of the operator is greater than or equal
@@ -227,23 +225,19 @@ user.name : ("administrator", "system", "network service")
227225
----
228226

229227
`in` (case-sensitive)::
230-
Returns `true` if the value is contained in the provided list. For strings,
231-
matching is case-sensitive.
228+
Returns `true` if the value is contained in the provided list.
232229

233230
`in~` (case-insensitive)::
234-
Returns `true` if the value is contained in the provided list. For strings,
235-
matching is case-insensitive.
231+
Returns `true` if the value is contained in the provided list.
236232

237233
`not in` (case-sensitive)::
238-
Returns `true` if the value is not contained in the provided list. For strings,
239-
matching is case-sensitive.
234+
Returns `true` if the value is not contained in the provided list.
240235

241236
`not in~` (case-insensitive)::
242-
Returns `true` if the value is not contained in the provided list. For strings,
243-
matching is case-insensitive.
237+
Returns `true` if the value is not contained in the provided list.
244238

245239
`:` (case-insensitive)::
246-
Returns `true` if the value is contained in the provided list. Can only be used
240+
Returns `true` if the string is contained in the provided list. Can only be used
247241
to compare strings.
248242

249243
[discrete]

0 commit comments

Comments
 (0)