MCPcopy Create free account
hub / github.com/araddon/qlbridge / WalkUpsert

Method WalkUpsert

exec/executor.go:155–158  ·  view source on GitHub ↗
(p *plan.Upsert)

Source from the content-addressed store, hash-verified

153 return root, m.WalkChildren(p, root)
154}
155func (m *JobExecutor) WalkUpsert(p *plan.Upsert) (Task, error) {
156 root := m.NewTask(p)
157 return root, root.Add(NewUpsert(m.Ctx, p))
158}
159func (m *JobExecutor) WalkInsert(p *plan.Insert) (Task, error) {
160 root := m.NewTask(p)
161 return root, root.Add(NewInsert(m.Ctx, p))

Callers

nothing calls this directly

Calls 3

NewTaskMethod · 0.95
AddMethod · 0.95
NewUpsertFunction · 0.85

Tested by

no test coverage detected