Skip to content

Commit

Permalink
Revert "Fix describe miss some params (#1742)" (#1755)
Browse files Browse the repository at this point in the history
This reverts commit f52eefa.

Signed-off-by: yangxuan <[email protected]>
  • Loading branch information
XuanYang-cn authored Oct 25, 2023
1 parent eeb75df commit c06496e
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions pymilvus/client/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,25 @@ def __pack(self, raw: Any):
self.indexes.extend([index_dict])

def dict(self):
return {
_dict = {
"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 @@ -162,8 +168,9 @@ 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 c06496e

Please sign in to comment.