[skip ci] Check the syntax of query_boolean_expr md (#13554)

Signed-off-by: min.tian <min.tian.cn@gmail.com>
This commit is contained in:
min.tian 2021-12-17 17:29:25 +08:00 committed by GitHub
parent 897ddbfd1a
commit 068bab30fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ After syntax analysis, the following rules will be applied:
3. CompareExpr between non-vector columns of different types is available. 3. CompareExpr between non-vector columns of different types is available.
4. The modulo operation requires all operands to be integers. 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. 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 Example