risingwave_pb::expr

Type Alias PbAggType

source
pub type PbAggType = AggType;
Expand description

Alias for AggType.

Aliased Type§

struct PbAggType {
    pub kind: i32,
    pub udf_meta: Option<UserDefinedFunctionMetadata>,
    pub scalar_expr: Option<ExprNode>,
}

Fields§

§kind: i32§udf_meta: Option<UserDefinedFunctionMetadata>

UDF metadata. Only present when the kind is USER_DEFINED.

§scalar_expr: Option<ExprNode>

Wrapped scalar expression. Only present when the kind is WRAP_SCALAR.