Enum datafusion::physical_plan::aggregates::AggregateFunction [−][src]
pub enum AggregateFunction {
Count,
Sum,
Min,
Max,
Avg,
ApproxDistinct,
}
Expand description
Enum of all built-in scalar functions
Variants
count
sum
min
max
avg
Approximate aggregate function
Trait Implementations
type Err = DataFusionError
type Err = DataFusionError
The associated error which can be returned from parsing.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for AggregateFunction
impl Send for AggregateFunction
impl Sync for AggregateFunction
impl Unpin for AggregateFunction
impl UnwindSafe for AggregateFunction
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.