[skip ci] Add note for design doc (#13235)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
This commit is contained in:
groot 2021-12-13 11:05:28 +08:00 committed by GitHub
parent e03dbf0efc
commit 99f7c38513
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,7 +83,7 @@ After syntax analysis, the following rules will be applied:
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
Example
```python
A > 3 && A < 4 && (C > 5 || D < 6)