()
| 33 | } |
| 34 | |
| 35 | func (d *insertData) Query() (*sql.Rows, error) { |
| 36 | if d.RunWith == nil { |
| 37 | return nil, RunnerNotSet |
| 38 | } |
| 39 | return QueryWith(d.RunWith, d) |
| 40 | } |
| 41 | |
| 42 | func (d *insertData) QueryRow() RowScanner { |
| 43 | if d.RunWith == nil { |
nothing calls this directly
no test coverage detected