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
- Hardware/Softward conditions (OS, CPU, GPU, Memory):
- Method of installation (Docker, or from source):
- Milvus version (v0.3.1, or v0.4.0):
- Milvus configuration (Settings you made in `server_config.yaml`):
Anything else?
No response
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
Describe the bug
pymilvus/pymilvus/orm/iterator.py
第 375 行代码filtered_pk_str = f'{self._pk_field_name} > "{self._next_id}"'
当 self._next_id 是一个字典格式的字符串时,比如 self._next_id = '{"name":"张三","school":"北大"}'
调用 collection.query_iterator() 迭代器会报如下错误:
建议使用 json.dumps()
filtered_pk_str = f'{self._pk_field_name} > {json.dumps(self._next_id, ensure_ascii=True)}'
Expected Behavior
No response
Steps/Code To Reproduce behavior
Environment details
Anything else?
No response
The text was updated successfully, but these errors were encountered: