We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b4bde9 commit a9ef29dCopy full SHA for a9ef29d
2 files changed
vortex-array/src/arrays/dict/take.rs
@@ -150,8 +150,13 @@ pub(crate) fn propagate_take_stats(
150
st.set(Stat::IsConstant, Precision::exact(true));
151
}
152
153
- let inexact_min_max = [Stat::Min, Stat::Max]
154
- .into_iter()
+ let inexact_min_max = [
+ Stat::Min,
155
+ Stat::Max,
156
+ Stat::UncompressedSizeInBytes,
157
+ Stat::IsConstant,
158
+ ]
159
+ .into_iter()
160
.filter_map(|stat| {
161
source
162
.statistics()
vortex-array/src/stats/mod.rs
@@ -26,6 +26,7 @@ pub const PRUNING_STATS: &[Stat] = &[
26
Stat::Sum,
27
Stat::NullCount,
28
Stat::NaNCount,
29
30
];
31
32
pub fn as_stat_bitset_bytes(stats: &[Stat]) -> Vec<u8> {
0 commit comments