risingwave_expr_impl/window_function/
mod.rs1use itertools::Itertools;
16use risingwave_expr::window_function::{
17 BoxedWindowState, WINDOW_STATE_BUILDERS, WindowFuncCall, WindowFuncKind,
18};
19use risingwave_expr::{ExprError, Result};
20
21mod aggregate;
22mod buffer;
23mod range_utils;
24mod rank;
25
26#[linkme::distributed_slice(WINDOW_STATE_BUILDERS)]
27fn create_window_state_impl(call: &WindowFuncCall) -> Result<BoxedWindowState> {
28 assert!(call.frame.bounds.validate().is_ok());
29
30 use WindowFuncKind::*;
31 Ok(match &call.kind {
32 RowNumber => Box::new(rank::RankState::<rank::RowNumber>::new(call)),
33 Rank => Box::new(rank::RankState::<rank::Rank>::new(call)),
34 DenseRank => Box::new(rank::RankState::<rank::DenseRank>::new(call)),
35 Aggregate(_) => aggregate::new(call)?,
36 kind => {
37 return Err(ExprError::UnsupportedFunction(format!(
38 "{}({}) -> {}",
39 kind,
40 call.args.arg_types().iter().format(", "),
41 &call.return_type,
42 )));
43 }
44 })
45}