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
first_row_id: Optional[int] =Field(alias="first-row-id", default=None, description="assigned to the first row in the first data file in the first manifest")
247
-
added_rows: Optional[int] =Field(alias="added-rows", default=None, description="Sum of the `added_rows_count` from all manifests added in this snapshot.")
246
+
first_row_id: Optional[int] =Field(
247
+
alias="first-row-id", default=None, description="assigned to the first row in the first data file in the first manifest"
248
+
)
249
+
added_rows: Optional[int] =Field(
250
+
alias="added-rows", default=None, description="Sum of the `added_rows_count` from all manifests added in this snapshot."
251
+
)
248
252
249
253
def__str__(self) ->str:
250
254
"""Return the string representation of the Snapshot class."""
raiseValueError(f"Cannot add a snapshot with first row id smaller than the table's next-row-id {update.snapshot.first_row_id} < {base_metadata.next_row_id}")
0 commit comments