()
| 37 | } |
| 38 | |
| 39 | func (d *updateData) Query() (*sql.Rows, error) { |
| 40 | if d.RunWith == nil { |
| 41 | return nil, RunnerNotSet |
| 42 | } |
| 43 | return QueryWith(d.RunWith, d) |
| 44 | } |
| 45 | |
| 46 | func (d *updateData) QueryRow() RowScanner { |
| 47 | if d.RunWith == nil { |
nothing calls this directly
no test coverage detected