You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/05/25 05:46:02 UTC

[GitHub] [arrow-rs] viirya commented on a diff in pull request #1736: Fix projection in IPC reader

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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org