Skip to content

Commit

Permalink
remove schema upts
Browse files Browse the repository at this point in the history
Signed-off-by: Xianhui.Lin <[email protected]>
  • Loading branch information
JsDove committed Jan 24, 2025
1 parent bb3d761 commit 96fc523
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pymilvus/client/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ def __pack(self, raw: Any):
# for kv in raw.extra_params:

self.fields = [FieldSchema(f) for f in raw.schema.fields]
self.update_timestamp = raw.update_timestamp
self.functions = [FunctionSchema(f) for f in raw.schema.functions]
function_output_field_names = [f for fn in self.functions for f in fn.output_field_names]
for field in self.fields:
Expand Down Expand Up @@ -247,7 +246,6 @@ def dict(self):
"properties": self.properties,
"num_partitions": self.num_partitions,
"enable_dynamic_field": self.enable_dynamic_field,
"update_timestamp": self.update_timestamp,
}
self._rewrite_schema_dict(_dict)
return _dict
Expand Down

0 comments on commit 96fc523

Please sign in to comment.