pub struct Aggregate {
pub input: Arc<LogicalPlan>,
pub group_exprs: Vec<Expr>,
pub aggr_exprs: Vec<Expr>,
pub schema: SchemaRef,
}Fields§
§input: Arc<LogicalPlan>The incoming logical plan
group_exprs: Vec<Expr>Grouping expressions
aggr_exprs: Vec<Expr>Aggregate expressions
schema: SchemaRefThe schema description of the aggregate output
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Aggregate
impl RefUnwindSafe for Aggregate
impl Send for Aggregate
impl Sync for Aggregate
impl Unpin for Aggregate
impl UnsafeUnpin for Aggregate
impl UnwindSafe for Aggregate
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