Skip to content

Commit

Permalink
Fix describe miss some params
Browse files Browse the repository at this point in the history
Signed-off-by: lixinguo <[email protected]>
  • Loading branch information
lixinguo committed Oct 19, 2023
1 parent c4a05a7 commit ef971e6
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions pymilvus/client/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,25 +118,19 @@ def __pack(self, raw: Any):
self.indexes.extend([index_dict])

def dict(self):
_dict = {
return {
"field_id": self.field_id,
"name": self.name,
"description": self.description,
"type": self.type,
"params": self.params or {},
"element_type": self.element_type,
"is_primary": self.is_primary,
"auto_id": self.auto_id,
"is_partition_key": self.is_partition_key,
"is_dynamic": self.is_dynamic,
}

if self.is_partition_key:
_dict["is_partition_key"] = True
if self.is_dynamic:
_dict["is_dynamic"] = True
if self.auto_id:
_dict["auto_id"] = True
if self.is_primary:
_dict["is_primary"] = self.is_primary
return _dict


class CollectionSchema:
def __init__(self, raw: Any):
Expand Down Expand Up @@ -214,9 +208,8 @@ def dict(self):
"consistency_level": self.consistency_level,
"properties": self.properties,
"num_partitions": self.num_partitions,
"enable_dynamic_field": self.enable_dynamic_field,
}
if self.enable_dynamic_field:
_dict["enable_dynamic_field"] = self.enable_dynamic_field
self._rewrite_schema_dict(_dict)
return _dict

Expand Down

0 comments on commit ef971e6

Please sign in to comment.