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

Method WalkAlter

exec/executor.go:332–335  ·  view source on GitHub ↗

WalkAlter walks the Alter plan.

(p *plan.Alter)

Source from the content-addressed store, hash-verified

330
331// WalkAlter walks the Alter plan.
332func (m *JobExecutor) WalkAlter(p *plan.Alter) (Task, error) {
333 root := m.NewTask(p)
334 return root, root.Add(NewAlter(m.Ctx, p))
335}
336
337// WalkChildren walk dag of plan tasks creating execution tasks
338func (m *JobExecutor) WalkChildren(p plan.Task, root Task) error {

Callers

nothing calls this directly

Calls 3

NewTaskMethod · 0.95
AddMethod · 0.95
NewAlterFunction · 0.70

Tested by

no test coverage detected