Other Statements WalkCommand walk Commands such as SET.
(p *plan.Command)
| 310 | |
| 311 | // WalkCommand walk Commands such as SET. |
| 312 | func (m *JobExecutor) WalkCommand(p *plan.Command) (Task, error) { |
| 313 | root := m.NewTask(p) |
| 314 | return root, root.Add(NewCommand(m.Ctx, p)) |
| 315 | } |
| 316 | |
| 317 | // DDL Operations |
| 318 |
nothing calls this directly
no test coverage detected