sungwy commented on code in PR #986: URL: https://github.com/apache/iceberg-python/pull/986#discussion_r1700656578
########## pyiceberg/io/__init__.py: ########## @@ -80,6 +80,7 @@ GCS_ENDPOINT = "gcs.endpoint" GCS_DEFAULT_LOCATION = "gcs.default-bucket-location" GCS_VERSION_AWARE = "gcs.version-aware" +PYARROW_USE_LARGE_TYPES_ON_READ = "pyarrow.use-large-types-on-read" Review Comment: I thought of that, but decided to leave it here because I liked having the FileIO properties together in one place. WDYT? ########## pyiceberg/io/pyarrow.py: ########## @@ -877,8 +883,8 @@ def _(obj: Union[pa.ListType, pa.LargeListType, pa.FixedSizeListType], visitor: visitor.before_list_element(obj.value_field) result = visit_pyarrow(obj.value_type, visitor) visitor.after_list_element(obj.value_field) - - return visitor.list(obj, result) + ret = visitor.list(obj, result) Review Comment: :) -- 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