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