PbDeleteNode

Type Alias PbDeleteNode 

Source
pub type PbDeleteNode = DeleteNode;

Aliased Type§

pub struct PbDeleteNode {
    pub table_id: TypedId<0, u32>,
    pub table_version_id: u64,
    pub pk_indices: Vec<u32>,
    pub returning: bool,
    pub upsert: bool,
    pub session_id: u32,
}

Fields§

§table_id: TypedId<0, u32>

Id of the table to perform deleting.

§table_version_id: u64

Version of the table.

§pk_indices: Vec<u32>

Primary key indices of the table.

§returning: bool§upsert: bool

If enabled, only key columns are kept and the rest are NULL.

§session_id: u32

Session id is used to ensure that dml data from the same session should be sent to a fixed worker node and channel.