risingwave_pb::stream_plan

Type Alias PbMergeNode

source
pub type PbMergeNode = MergeNode;
Expand description

Alias for MergeNode.

Aliased Type§

struct PbMergeNode {
    pub upstream_actor_id: Vec<u32>,
    pub upstream_fragment_id: u32,
    pub upstream_dispatcher_type: i32,
    pub fields: Vec<Field>,
}

Fields§

§upstream_actor_id: Vec<u32>§upstream_fragment_id: u32§upstream_dispatcher_type: i32

Type of the upstream dispatcher. If there’s always one upstream according to this type, the compute node may use the ReceiverExecutor as an optimization.

§fields: Vec<Field>

The schema of input columns. TODO: remove this field.