tustvold commented on a change in pull request #1180: URL: https://github.com/apache/arrow-rs/pull/1180#discussion_r789800454
########## File path: parquet/src/arrow/array_reader/byte_array_dictionary.rs ########## @@ -341,7 +341,9 @@ where Some(keys) => { // Happy path - can just copy keys // Keys will be validated on conversion to arrow - decoder.get_batch(keys.spare_capacity_mut(len)) + let keys_slice = keys.spare_capacity_mut(range.start + len); Review comment: Fix in https://github.com/apache/arrow-rs/pull/1180/commits/bf28e160b5c3b1df923014b43f7acf39fb980dff -- 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