Type Alias PbRexNode

Source
pub type PbRexNode = RexNode;

Aliased Type§

enum PbRexNode {
    InputRef(u32),
    Constant(Datum),
    FuncCall(FunctionCall),
    Udf(Box<UserDefinedFunction>),
    Now(NowRexNode),
}

Variants§

§

InputRef(u32)

§

Constant(Datum)

§

FuncCall(FunctionCall)

§

Udf(Box<UserDefinedFunction>)

§

Now(NowRexNode)