jhorstmann commented on code in PR #9365:
URL: https://github.com/apache/arrow-rs/pull/9365#discussion_r2822728872


##########
parquet/src/encodings/rle.rs:
##########
@@ -465,7 +465,11 @@ impl RleDecoder {
             if self.rle_left > 0 {
                 let num_values = cmp::min(max_values - values_read, 
self.rle_left as usize);
                 let dict_idx = self.current_value.unwrap() as usize;
-                let dict_value = dict[dict_idx].clone();

Review Comment:
   I managed to create two sample files that reproduce this error in #9434, 
feel free to add these as unit tests in this PR.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to