binbin
binbin
Now "is_dynamic" is not displayed in the result of collection.describe(), verified and fixed. ``` >>> collection.describe() {'collection_name': 'test_search_collection_binbin_tmp_0', 'auto_id': False, 'num_shards': 1, 'description': '', 'fields': [{'field_id': 100, 'name': 'int64', 'description':...
/run-cpu-e2e
/run-cpu-e2e
/lgtm
And the same: collection.search(vectors[:nq], "float_vector", default_search_params, limit, "json_field[\"string\"] == None") ``` >>> res = collection.search(vectors[:nq], "float_vector", default_search_params, limit, "json_field[\"string\"] == None") RPC error: [search], , Traceback (most recent call last):...
@xiaocai2333 you mean the following error? ``` >>> res = collection.search(vectors[:nq], "float_vector", default_search_params, limit, "json_field['string'] == json_field['None']") RPC error: [search], , Traceback (most recent call last): File "", line 1,...
And ``` >>> collection.search(vectors[:nq], "float_vector", default_search_params, limit, "json_field['string'] == None") RPC error: [search], , Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/python3.8/dist-packages/pymilvus/orm/collection.py", line 628, in search...
The error now for None is: pymilvus.exceptions.MilvusException: It seems that the error message did not show the error is that we do not support None?
any updates? @jiaoew1991 @smellthemoon