You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if filters is not None:
filters += " and " + EMPTY_FIELD + " in [0]"
else:
filters = EMPTY_FIELD + " in [0]"
I don't know why the empty field is "required". Yet with a query that does not have any filters, the result is empty.
Changing filters to None gives non empty result
The text was updated successfully, but these errors were encountered:
in
milvus.py
there's a line 493 and following:I don't know why the empty field is "required". Yet with a query that does not have any filters, the result is empty.
Changing
filters
toNone
gives non empty resultThe text was updated successfully, but these errors were encountered: