pub struct StreamingAggregateIterator<'a> { /* private fields */ }Expand description
Iterator that performs streaming aggregation over sorted input.
Implementations§
Source§impl<'a> StreamingAggregateIterator<'a>
impl<'a> StreamingAggregateIterator<'a>
pub fn new( input: Box<dyn RowIterator + 'a>, group_keys: Vec<TypedExpr>, aggregates: Vec<AggregateExpr>, having: Option<TypedExpr>, schema: Vec<ColumnMetadata>, ) -> Self
Trait Implementations§
Source§impl<'a> RowIterator for StreamingAggregateIterator<'a>
impl<'a> RowIterator for StreamingAggregateIterator<'a>
Auto Trait Implementations§
impl<'a> Freeze for StreamingAggregateIterator<'a>
impl<'a> !RefUnwindSafe for StreamingAggregateIterator<'a>
impl<'a> !Send for StreamingAggregateIterator<'a>
impl<'a> !Sync for StreamingAggregateIterator<'a>
impl<'a> Unpin for StreamingAggregateIterator<'a>
impl<'a> !UnwindSafe for StreamingAggregateIterator<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more