From 068bab30fcd955c44a8481fa32f5d39484931623 Mon Sep 17 00:00:00 2001 From: "min.tian" Date: Fri, 17 Dec 2021 17:29:25 +0800 Subject: [PATCH] [skip ci] Check the syntax of query_boolean_expr md (#13554) Signed-off-by: min.tian --- docs/design_docs/query_boolean_expr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_docs/query_boolean_expr.md b/docs/design_docs/query_boolean_expr.md index 63c9efa23e..8bcaad18ef 100644 --- a/docs/design_docs/query_boolean_expr.md +++ b/docs/design_docs/query_boolean_expr.md @@ -81,7 +81,7 @@ After syntax analysis, the following rules will be applied: 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. While float columns can match both integer and float operands. -6. In BinaryOp, the `and`/`&&` operator has higher priority than the `or`/`||` operator. +6. In BinaryOp, the `and`/`&&` operator has a higher priority than the `or`/`||` operator. Example: