We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47348a1 commit ca2d007Copy full SHA for ca2d007
datafusion/physical-plan/src/aggregates/row_hash.rs
@@ -635,6 +635,7 @@ impl GroupedHashAggregateStream {
635
for group_values in &group_by_values {
636
// calculate the group indices for each input row
637
let starting_num_groups = self.group_values.len();
638
+ self.reservation.try_resize(self.reservation.size() * 2)?;
639
self.group_values
640
.intern(group_values, &mut self.current_group_indices)?;
641
let group_indices = &self.current_group_indices;
0 commit comments