(
scx: &StatementContext,
stmt: UpdateStatement<Aug>,
params: &Params,
)
| 147 | } |
| 148 | |
| 149 | pub fn plan_update( |
| 150 | scx: &StatementContext, |
| 151 | stmt: UpdateStatement<Aug>, |
| 152 | params: &Params, |
| 153 | ) -> Result<Plan, PlanError> { |
| 154 | let rtw_plan = query::plan_update_query(scx, stmt)?; |
| 155 | plan_read_then_write(scx, MutationKind::Update, params, rtw_plan) |
| 156 | } |
| 157 | |
| 158 | pub fn plan_read_then_write( |
| 159 | scx: &StatementContext, |
no test coverage detected