()
| 22 | } |
| 23 | |
| 24 | func (d *deleteData) Exec() (sql.Result, error) { |
| 25 | if d.RunWith == nil { |
| 26 | return nil, RunnerNotSet |
| 27 | } |
| 28 | return ExecWith(d.RunWith, d) |
| 29 | } |
| 30 | |
| 31 | func (d *deleteData) ToSql() (sqlStr string, args []interface{}, err error) { |
| 32 | if len(d.From) == 0 { |
nothing calls this directly
no test coverage detected