(p *plan.Where)
| 219 | return nil, fmt.Errorf("%T Must Implement Scanner for %q", p.Conn, p.Stmt.String()) |
| 220 | } |
| 221 | func (m *JobExecutor) WalkWhere(p *plan.Where) (Task, error) { |
| 222 | return NewWhere(m.Ctx, p), nil |
| 223 | } |
| 224 | func (m *JobExecutor) WalkHaving(p *plan.Having) (Task, error) { |
| 225 | return NewHaving(m.Ctx, p), nil |
| 226 | } |
nothing calls this directly
no test coverage detected