Struct datafusion_proto::generated::datafusion::AggregateExecNode
source · pub struct AggregateExecNode {
pub group_expr: Vec<PhysicalExprNode>,
pub aggr_expr: Vec<PhysicalExprNode>,
pub mode: i32,
pub input: Option<Box<PhysicalPlanNode>>,
pub group_expr_name: Vec<String>,
pub aggr_expr_name: Vec<String>,
pub input_schema: Option<Schema>,
pub null_expr: Vec<PhysicalExprNode>,
pub groups: Vec<bool>,
pub filter_expr: Vec<MaybeFilter>,
pub order_by_expr: Vec<MaybePhysicalSortExprs>,
}Fields§
§group_expr: Vec<PhysicalExprNode>§aggr_expr: Vec<PhysicalExprNode>§mode: i32§input: Option<Box<PhysicalPlanNode>>§group_expr_name: Vec<String>§aggr_expr_name: Vec<String>§input_schema: Option<Schema>we need the input schema to the partial aggregate to pass to the final aggregate
null_expr: Vec<PhysicalExprNode>§groups: Vec<bool>§filter_expr: Vec<MaybeFilter>§order_by_expr: Vec<MaybePhysicalSortExprs>Implementations§
source§impl AggregateExecNode
impl AggregateExecNode
sourcepub fn mode(&self) -> AggregateMode
pub fn mode(&self) -> AggregateMode
Returns the enum value of mode, or the default if the field is set to an invalid enum value.
sourcepub fn set_mode(&mut self, value: AggregateMode)
pub fn set_mode(&mut self, value: AggregateMode)
Sets mode to the provided enum value.
Trait Implementations§
source§impl Clone for AggregateExecNode
impl Clone for AggregateExecNode
source§fn clone(&self) -> AggregateExecNode
fn clone(&self) -> AggregateExecNode
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AggregateExecNode
impl Debug for AggregateExecNode
source§impl Default for AggregateExecNode
impl Default for AggregateExecNode
source§impl Message for AggregateExecNode
impl Message for AggregateExecNode
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
Encodes the message to a buffer. Read more
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
Encodes the message to a newly allocated buffer.
source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
source§fn decode<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
fn decode<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
Decodes an instance of the message from a buffer. Read more
source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moresource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.source§impl PartialEq for AggregateExecNode
impl PartialEq for AggregateExecNode
source§fn eq(&self, other: &AggregateExecNode) -> bool
fn eq(&self, other: &AggregateExecNode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AggregateExecNode
Auto Trait Implementations§
impl RefUnwindSafe for AggregateExecNode
impl Send for AggregateExecNode
impl Sync for AggregateExecNode
impl Unpin for AggregateExecNode
impl UnwindSafe for AggregateExecNode
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