(
scx: &StatementContext,
stmt: DeleteStatement<Aug>,
params: &Params,
)
| 130 | } |
| 131 | |
| 132 | pub fn plan_delete( |
| 133 | scx: &StatementContext, |
| 134 | stmt: DeleteStatement<Aug>, |
| 135 | params: &Params, |
| 136 | ) -> Result<Plan, PlanError> { |
| 137 | let rtw_plan = query::plan_delete_query(scx, stmt)?; |
| 138 | plan_read_then_write(scx, MutationKind::Delete, params, rtw_plan) |
| 139 | } |
| 140 | |
| 141 | pub fn describe_update( |
| 142 | scx: &StatementContext, |
no test coverage detected