()
| 27 | } |
| 28 | |
| 29 | func (d *selectData) Exec() (sql.Result, error) { |
| 30 | if d.RunWith == nil { |
| 31 | return nil, RunnerNotSet |
| 32 | } |
| 33 | return ExecWith(d.RunWith, d) |
| 34 | } |
| 35 | |
| 36 | func (d *selectData) Query() (*sql.Rows, error) { |
| 37 | if d.RunWith == nil { |
nothing calls this directly
no test coverage detected