Skip to content

Commit 20cbd51

Browse files
committed
remove in 0.10
1 parent 5a920cd commit 20cbd51

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

pyiceberg/table/update/__init__.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
transform_dict_value_to_str,
5050
)
5151
from pyiceberg.utils.datetime import datetime_to_millis
52-
from pyiceberg.utils.deprecated import deprecation_notice
5352
from pyiceberg.utils.properties import property_as_int
5453

5554
if TYPE_CHECKING:
@@ -92,16 +91,6 @@ class UpgradeFormatVersionUpdate(IcebergBaseModel):
9291
class AddSchemaUpdate(IcebergBaseModel):
9392
action: Literal["add-schema"] = Field(default="add-schema")
9493
schema_: Schema = Field(alias="schema")
95-
# This field is required: https://github.com/apache/iceberg/pull/7445
96-
last_column_id: Optional[int] = Field(
97-
alias="last-column-id",
98-
default=None,
99-
deprecated=deprecation_notice(
100-
deprecated_in="0.9.0",
101-
removed_in="0.10.0",
102-
help_message="last-field-id is handled internally, and should not be part of the update.",
103-
),
104-
)
10594

10695

10796
class SetCurrentSchemaUpdate(IcebergBaseModel):

0 commit comments

Comments
 (0)