viirya commented on code in PR #1736: URL: https://github.com/apache/arrow-rs/pull/1736#discussion_r881239079
########## arrow/src/ipc/reader.rs: ########## @@ -275,6 +275,120 @@ fn create_array( Ok((array, node_index, buffer_index)) } +/// Skip fields based on data types to advance `node_index` and `buffer_index`. +/// This function should be called when doing projection in fn `read_record_batch`. +/// The advancement logic references fn `create_array`. +fn skip_filed( Review Comment: I think you mean: ```suggestion fn skip_field( ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org