We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e5af89 commit 315abb8Copy full SHA for 315abb8
1 file changed
vortex-array/src/arrays/dict/take.rs
@@ -157,14 +157,14 @@ pub(crate) fn propagate_take_stats(
157
Stat::IsConstant,
158
]
159
.into_iter()
160
- .filter_map(|stat| {
161
- source
162
- .statistics()
163
- .get(stat)
164
- .and_then(|v| v.map(|s| s.into_value()).into_inexact().transpose())
165
- .map(|sv| (stat, sv))
166
- })
167
- .collect::<Vec<_>>();
+ .filter_map(|stat| {
+ source
+ .statistics()
+ .get(stat)
+ .and_then(|v| v.map(|s| s.into_value()).into_inexact().transpose())
+ .map(|sv| (stat, sv))
+ })
+ .collect::<Vec<_>>();
168
st.combine_sets(
169
&(unsafe { StatsSet::new_unchecked(inexact_min_max) }).as_typed_ref(source.dtype()),
170
)
0 commit comments