Struct datafusion_expr::Window
source · pub struct Window {
pub input: Arc<LogicalPlan>,
pub window_expr: Vec<Expr>,
pub schema: DFSchemaRef,
}Expand description
Window its input based on a set of window spec and window function (e.g. SUM or RANK)
Fields§
§input: Arc<LogicalPlan>The incoming logical plan
window_expr: Vec<Expr>The window function expression
schema: DFSchemaRefThe schema description of the window output