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