From 2366c1443be94973e7068ab2ad59a26d48b335ea Mon Sep 17 00:00:00 2001 From: James Rodewig <40268737+jrodewig@users.noreply.github.com> Date: Tue, 22 Sep 2020 13:53:48 -0400 Subject: [PATCH] [DOCS] EQL: Note = is not an equality operator --- docs/reference/eql/syntax.asciidoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/reference/eql/syntax.asciidoc b/docs/reference/eql/syntax.asciidoc index 29affff5cc5..30dc2da43b6 100644 --- a/docs/reference/eql/syntax.asciidoc +++ b/docs/reference/eql/syntax.asciidoc @@ -98,6 +98,8 @@ Returns `true` if the value to the left of the operator is greater than the value to the right. Otherwise returns `false`. ==== +NOTE: `=` is not supported as an equality operator. Use `==` instead. + You cannot chain comparison operators. Instead, use a <> between comparisons. For example, `foo < bar <= baz` is not supported. However, you can rewrite the