We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2014a94 commit 4510f29Copy full SHA for 4510f29
1 file changed
datafusion/physical-plan/src/aggregates/group_values/single_group_by/primitive.rs
@@ -174,7 +174,7 @@ where
174
}
175
176
fn len(&self) -> usize {
177
- self.map.len() + self.null_group.map(|_| 1).unwrap_or_default()
+ self.values.iter().map(|block| block.len()).sum::<usize>()
178
179
180
fn emit(&mut self, emit_to: EmitTo) -> Result<Vec<ArrayRef>> {
0 commit comments