pub type PbUpdateNode = UpdateNode;Aliased Type§
pub struct PbUpdateNode {
pub table_id: u32,
pub table_version_id: u64,
pub old_exprs: Vec<ExprNode>,
pub new_exprs: Vec<ExprNode>,
pub returning: bool,
pub session_id: u32,
}Fields§
§table_id: u32Id of the table to perform updating.
table_version_id: u64Version of the table.
old_exprs: Vec<ExprNode>Expressions to generate U- records.
new_exprs: Vec<ExprNode>Expressions to generate U+ records.
returning: bool§session_id: u32Session id is used to ensure that dml data from the same session should be sent to a fixed worker node and channel.