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