risingwave_pb::stream_plan

Type Alias PbDeltaIndexJoinNode

source
pub type PbDeltaIndexJoinNode = DeltaIndexJoinNode;
Expand description

Alias for DeltaIndexJoinNode.

Aliased Type§

struct PbDeltaIndexJoinNode {
    pub join_type: i32,
    pub left_key: Vec<i32>,
    pub right_key: Vec<i32>,
    pub condition: Option<ExprNode>,
    pub left_table_id: u32,
    pub right_table_id: u32,
    pub left_info: Option<ArrangementInfo>,
    pub right_info: Option<ArrangementInfo>,
    pub output_indices: Vec<u32>,
}

Fields§

§join_type: i32§left_key: Vec<i32>§right_key: Vec<i32>§condition: Option<ExprNode>§left_table_id: u32

Table id of the left index.

§right_table_id: u32

Table id of the right index.

§left_info: Option<ArrangementInfo>

Info about the left index

§right_info: Option<ArrangementInfo>

Info about the right index

§output_indices: Vec<u32>

the output indices of current node