(ctx *plan.Context, p *plan.Update)
| 57 | return m |
| 58 | } |
| 59 | func NewUpdate(ctx *plan.Context, p *plan.Update) *Upsert { |
| 60 | m := &Upsert{ |
| 61 | TaskBase: NewTaskBase(ctx), |
| 62 | db: p.Source, |
| 63 | update: p.Stmt, |
| 64 | } |
| 65 | return m |
| 66 | } |
| 67 | func NewUpsert(ctx *plan.Context, p *plan.Upsert) *Upsert { |
| 68 | m := &Upsert{ |
| 69 | TaskBase: NewTaskBase(ctx), |
no test coverage detected