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 06f2475 commit 5634cceCopy full SHA for 5634cce
datafusion/physical-plan/src/aggregates/row_hash.rs
@@ -328,7 +328,9 @@ impl GroupedHashAggregateStream {
328
.collect();
329
330
let name = format!("GroupedHashAggregateStream[{partition}]");
331
- let reservation = MemoryConsumer::new(name).register(context.memory_pool());
+ let reservation = MemoryConsumer::new(name)
332
+ .with_can_spill(true)
333
+ .register(context.memory_pool());
334
335
let group_ordering = agg
336
.aggregation_ordering
0 commit comments