| 10 | ) |
| 11 | |
| 12 | type deleteData struct { |
| 13 | PlaceholderFormat PlaceholderFormat |
| 14 | RunWith BaseRunner |
| 15 | Prefixes []Sqlizer |
| 16 | From string |
| 17 | WhereParts []Sqlizer |
| 18 | OrderBys []string |
| 19 | Limit string |
| 20 | Offset string |
| 21 | Suffixes []Sqlizer |
| 22 | } |
| 23 | |
| 24 | func (d *deleteData) Exec() (sql.Result, error) { |
| 25 | if d.RunWith == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected