risingwave_pb::expr

Type Alias PbTableFunction

source
pub type PbTableFunction = TableFunction;
Expand description

Alias for TableFunction.

Aliased Type§

struct PbTableFunction {
    pub function_type: i32,
    pub args: Vec<ExprNode>,
    pub return_type: Option<DataType>,
    pub udf: Option<UserDefinedFunctionMetadata>,
}

Fields§

§function_type: i32§args: Vec<ExprNode>§return_type: Option<DataType>§udf: Option<UserDefinedFunctionMetadata>

optional. only used when the type is USER_DEFINED.