-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: Query filter with JSON: "AND" not working, must be "&&" (documentation issue?) #38864
Comments
/assign @xiaocai2333 |
Milvus's expression parsing is case-sensitive. Currently, we have only defined milvus/internal/parser/planparserv2/Plan.g4 Lines 74 to 75 in 7fe2cd0
|
/assign @chbussler |
LOL, I didn't know this etier |
Still, the documentation isn't matching the code then: https://milvus.io/docs/boolean.md
And there are other terminals like As a side note, Attu uses |
Agree, thanks for the feedback. we will fix the document as soon as possible |
actaully let's fix the compiler as well. |
docuement request and pr is submitted |
) fix #38864 AND, OR and NOT is not recognized in milvus parser master pr: #38927 Signed-off-by: Cai Zhang <[email protected]>
Is there an existing issue for this?
Environment
Current Behavior
Milvus raises exception:
Expected Behavior
Milvus does not raise exception when
AND
is replaced by&&
:The documentation says to use
AND
, the code says to use&&
: https://milvus.io/docs/use-json-fields.mdThe expected behavior is
Steps To Reproduce
Milvus Log
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: