[skip ci]Update typo in query boolean expr md (#11164)

Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
This commit is contained in:
yanliang567 2021-11-03 17:28:17 +08:00 committed by GitHub
parent 9c53375bba
commit 97c380c14a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,13 +74,13 @@ Tips:
1. NIL represents an empty string, which means there is no Predicate for Expr.
2. Gramma is described by EBNF syntaxexpressions that may be omitted or repeated are represented through curly braces `{...}`.
After syntax analysis, following rules will be applied:
After syntax analysis, the following rules will be applied:
1. non-vector column must exist in Schema.
2. CompareExpr/TermExpr requires operand type matching.
3. CompareExpr between non-vector columns of different types is available
4. The modulo operation requires all operands to be integers.
5. Integer columns can only match integer operands. But float columns can match both integer and float operands.
5. Integer columns can only match integer operands. While float columns can match both integer and float operands.
6. In BinaryOp, the `and`/`&&` operator has higher priority than the `or`/`||` operator
example