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

Method WalkCreate

exec/executor.go:320–323  ·  view source on GitHub ↗

DDL Operations WalkCreate walks the Create plan.

(p *plan.Create)

Source from the content-addressed store, hash-verified

318
319// WalkCreate walks the Create plan.
320func (m *JobExecutor) WalkCreate(p *plan.Create) (Task, error) {
321 root := m.NewTask(p)
322 return root, root.Add(NewCreate(m.Ctx, p))
323}
324
325// WalkDrop walks the Drop plan.
326func (m *JobExecutor) WalkDrop(p *plan.Drop) (Task, error) {

Callers

nothing calls this directly

Calls 3

NewTaskMethod · 0.95
AddMethod · 0.95
NewCreateFunction · 0.70

Tested by

no test coverage detected