dramaticlly opened a new pull request, #4590: URL: https://github.com/apache/iceberg/pull/4590
This is 1st step of reintroduce https://github.com/apache/iceberg/issues/3228 adds `PartitionField` in `iceberg/partitioning.py` ``` from iceberg.partitioning import PartitionField partition_field = PartitionField(3, 1, None, "id") partition_field PartitionField(field_id=1, name=id, transform=None, source_id=3) ``` Purposefully keep the change list small to focus only on PartitionField and once checked in we can look into PartitionSpec next. CC @samredai @rdblue @jun-he -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
