Skip to content

Commit f442f34

Browse files
committed
chore(OrderedFinalAggregateStream): refactor to async generator
1 parent 541caab commit f442f34

2 files changed

Lines changed: 196 additions & 327 deletions

File tree

datafusion/physical-plan/src/aggregates/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ impl From<StreamType> for SendableRecordBatchStream {
698698
StreamType::FinalHash(stream) => Box::pin(stream),
699699
StreamType::SingleHash(stream) => Box::pin(stream),
700700
StreamType::OrderedPartialAggregate(stream) => stream.into_stream(),
701-
StreamType::OrderedFinalAggregate(stream) => Box::pin(stream),
701+
StreamType::OrderedFinalAggregate(stream) => stream.into_stream(),
702702
StreamType::GroupedHash(stream) => Box::pin(stream),
703703
StreamType::GroupedPriorityQueue(stream) => Box::pin(stream),
704704
}

0 commit comments

Comments
 (0)