stevenzwu commented on code in PR #13699: URL: https://github.com/apache/iceberg/pull/13699#discussion_r2284062658
########## arrow/src/main/java/org/apache/iceberg/arrow/ArrowSchemaUtil.java: ########## @@ -51,94 +54,134 @@ private ArrowSchemaUtil() {} public static Schema convert(final org.apache.iceberg.Schema schema) { ImmutableList.Builder<Field> fields = ImmutableList.builder(); - for (NestedField f : schema.columns()) { - fields.add(convert(f)); + for (NestedField field : schema.columns()) { Review Comment: didn't see Dan's comment in my follow-up comment. will resolve this thread. -- 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