Rich-T-kid commented on code in PR #9936:
URL: https://github.com/apache/arrow-rs/pull/9936#discussion_r3242910355
##########
arrow/src/util/data_gen.rs:
##########
@@ -230,6 +233,62 @@ fn create_random_decimal_array(field: &Field, size: usize,
null_density: f32) ->
))),
}
}
+#[inline]
+fn create_random_run_end_encoded_array(
+ index: &Field,
+ value: &Field,
+ size: usize,
+ null_density: f32,
+ true_density: f32,
+) -> Result<ArrayRef> {
+ const MIN_RUN: usize = 8;
Review Comment:
Would it be worth it to add these as parameters or is it fine like this?
--
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]