pub enum MergeAction {
Insert(MergeInsertExpr),
Update(MergeUpdateExpr),
Delete {
delete_token: AttachedToken,
},
}Expand description
An INSERT clause
Example:
INSERT (product, quantity) VALUES(product, quantity)An UPDATE clause
Example:
UPDATE SET quantity = T.quantity + S.quantityA plain DELETE clause
Fields
The DELETE token that starts the sub-expression.