Skip to main content

Module expr

Module expr 

Source
Expand description

Expression constructors for statistics backed by aggregate functions.

Re-exports§

pub use crate::scalar_fn::fns::stat::StatFn;
pub use crate::scalar_fn::fns::stat::StatOptions;

Functions§

min_max
Creates stat(expr, min_max), returning a nullable { min, max } struct statistic.
nan_count
Creates stat(expr, nan_count), returning a nullable NaN-count statistic.
null_count
Creates stat(expr, null_count), returning a nullable null-count statistic.
stat
Creates an expression that reads a stored aggregate statistic for expr.
sum
Creates stat(expr, sum), returning a nullable sum statistic.