You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Furtnermore, since this is a requirement placed on callers of filter_run_end_array, filter_run_end_array should be changed to unsafe fn and include a comment like the following:
/// # Safety////// The caller must ensure that the `pred` and `re_arr` are the same length.
The text was updated successfully, but these errors were encountered:
I believe this comment is incorrect:
arrow-rs/arrow-select/src/filter.rs
Lines 444 to 447 in b945b15
It allows for
re_arr.len() <= pred.len()
.Instead,
filter_array
only errors in the case wherevalues.len()
is smaller, not where it is larger.arrow-rs/arrow-select/src/filter.rs
Line 341 in b945b15
Furtnermore, since this is a requirement placed on callers of
filter_run_end_array
,filter_run_end_array
should be changed tounsafe fn
and include a comment like the following:The text was updated successfully, but these errors were encountered: