risingwave_pb::ddl_service

Type Alias PbReplaceJobPlan

source
pub type PbReplaceJobPlan = ReplaceJobPlan;
Expand description

Alias for ReplaceJobPlan.

Aliased Type§

struct PbReplaceJobPlan {
    pub fragment_graph: Option<StreamFragmentGraph>,
    pub table_col_index_mapping: Option<ColIndexMapping>,
    pub replace_job: Option<ReplaceJob>,
}

Fields§

§fragment_graph: Option<StreamFragmentGraph>

The new materialization plan, where all schema are updated.

§table_col_index_mapping: Option<ColIndexMapping>

The mapping from the old columns to the new columns of the table. If no column modifications occur (such as for sinking into table), this will be None.

§replace_job: Option<ReplaceJob>