We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afe93e0 commit ff948b1Copy full SHA for ff948b1
pyiceberg/view/metadata.py
@@ -69,7 +69,7 @@ class ViewMetadata(IcebergBaseModel):
69
70
view_uuid: str = Field(alias="view-uuid")
71
"""A UUID that identifies the view, generated when the view is created."""
72
- format_version: Literal[1] = Field(alias="format-version")
+ format_version: int = Field(alias='format-version', ge=1, le=1)
73
"""An integer version number for the view format; must be 1"""
74
location: str = Field()
75
"""The view's base location; used to create metadata file locations"""
0 commit comments