[DOCS] EQL: Note = is not an equality operator

This commit is contained in:
James Rodewig 2020-09-22 13:53:48 -04:00
parent 39a617773d
commit 2366c1443b
1 changed files with 2 additions and 0 deletions

View File

@ -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
<<eql-syntax-logical-operators,logical operator>> between comparisons. For
example, `foo < bar <= baz` is not supported. However, you can rewrite the