kevinjqliu commented on PR #353:
URL: https://github.com/apache/iceberg-python/pull/353#issuecomment-2652609001
hey @sungwy @jqin61 just wanted to double check that this PR is no longer
relevant. I believe all components of partitioned write support has been
already merged
--
This is an
jqin61 commented on PR #353:
URL: https://github.com/apache/iceberg-python/pull/353#issuecomment-2025344888
As discussed in the monthly meeting, this will be broken down into 4 prs of:
1. Partitioned append with identity transform
2. Dynamic overwrite using delete + append, 2 snapshots
jqin61 commented on code in PR #353:
URL: https://github.com/apache/iceberg-python/pull/353#discussion_r1478509127
##
pyiceberg/manifest.py:
##
@@ -308,6 +308,7 @@ def data_file_with_partition(partition_type: StructType,
format_version: Literal
field_id=field.field
jqin61 commented on code in PR #353:
URL: https://github.com/apache/iceberg-python/pull/353#discussion_r1478509127
##
pyiceberg/manifest.py:
##
@@ -308,6 +308,7 @@ def data_file_with_partition(partition_type: StructType,
format_version: Literal
field_id=field.field
jqin61 commented on code in PR #353:
URL: https://github.com/apache/iceberg-python/pull/353#discussion_r1476487793
##
pyiceberg/table/__init__.py:
##
@@ -2467,3 +2462,131 @@ def commit(self) -> Snapshot:
)
return snapshot
+
+
+@dataclass(frozen=True)
+cla
syun64 commented on code in PR #353:
URL: https://github.com/apache/iceberg-python/pull/353#discussion_r1476291241
##
pyiceberg/table/__init__.py:
##
@@ -2467,3 +2462,131 @@ def commit(self) -> Snapshot:
)
return snapshot
+
+
+@dataclass(frozen=True)
+cla