Fokko commented on code in PR #910: URL: https://github.com/apache/iceberg-python/pull/910#discussion_r1673737827
########## pyiceberg/io/pyarrow.py: ########## @@ -937,7 +937,7 @@ def primitive(self, primitive: pa.DataType) -> PrimitiveType: else: raise TypeError(f"Unsupported precision for timestamp type: {primitive.unit}") - if primitive.tz == "UTC" or primitive.tz == "+00:00": + if primitive.tz in ("UTC", "+00:00", "Etc/UTC"): Review Comment: Supernit: ```suggestion if primitive.tz in {"UTC", "+00:00", "Etc/UTC"}: ``` -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org