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.