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/11/24 16:38:20 UTC

[GitHub] [arrow-rs] tustvold commented on a diff in pull request #3180: Row decode cleanups

tustvold commented on code in PR #3180:
URL: https://github.com/apache/arrow-rs/pull/3180#discussion_r1031695898


##########
arrow/src/row/fixed.rs:
##########
@@ -266,60 +267,42 @@ pub fn decode_bool(rows: &mut [&[u8]], options: SortOptions) -> BooleanArray {
     unsafe { BooleanArray::from(builder.build_unchecked()) }
 }
 
+fn decode_nulls(rows: &[&[u8]]) -> (usize, Buffer) {

Review Comment:
   Handling the null mask separately has no discernible impact on performance, it is possible it might actually improve it marginally, it reduces code complexity significantly, and will help reuse this logic for the fixed length binary array (PR to follow)



-- 
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