risingwave_expr/window_function/
kind.rs1use anyhow::Context;
16use enum_as_inner::EnumAsInner;
17use parse_display::{Display, FromStr};
18use risingwave_common::bail;
19
20use crate::Result;
21use crate::aggregate::AggType;
22
23#[expect(clippy::large_enum_variant)]
25#[derive(Debug, Display, FromStr , Clone, PartialEq, Eq, Hash, EnumAsInner)]
26#[display(style = "snake_case")]
27pub enum WindowFuncKind {
28 RowNumber,
30 Rank,
31 DenseRank,
32 Lag,
33 Lead,
34
35 #[display("{0}")]
37 Aggregate(AggType),
38}
39
40impl WindowFuncKind {
41 pub fn from_protobuf(
42 window_function_type: &risingwave_pb::expr::window_function::PbType,
43 ) -> Result<Self> {
44 use risingwave_pb::expr::agg_call::PbKind as PbAggKind;
45 use risingwave_pb::expr::window_function::{PbGeneralType, PbType};
46
47 let kind = match window_function_type {
48 PbType::General(typ) => match PbGeneralType::try_from(*typ) {
49 Ok(PbGeneralType::Unspecified) => bail!("Unspecified window function type"),
50 Ok(PbGeneralType::RowNumber) => Self::RowNumber,
51 Ok(PbGeneralType::Rank) => Self::Rank,
52 Ok(PbGeneralType::DenseRank) => Self::DenseRank,
53 Ok(PbGeneralType::Lag) => Self::Lag,
54 Ok(PbGeneralType::Lead) => Self::Lead,
55 Err(_) => bail!("no such window function type"),
56 },
57 PbType::Aggregate(kind) => Self::Aggregate(AggType::from_protobuf_flatten(
58 PbAggKind::try_from(*kind).context("no such aggregate function type")?,
59 None,
60 None,
61 )?),
62 PbType::Aggregate2(agg_type) => Self::Aggregate(AggType::from_protobuf(agg_type)?),
63 };
64 Ok(kind)
65 }
66}
67
68impl WindowFuncKind {
69 pub fn is_numbering(&self) -> bool {
70 matches!(self, Self::RowNumber | Self::Rank | Self::DenseRank)
71 }
72}