| 13 | ) |
| 14 | |
| 15 | type insertData struct { |
| 16 | PlaceholderFormat PlaceholderFormat |
| 17 | RunWith BaseRunner |
| 18 | Prefixes []Sqlizer |
| 19 | StatementKeyword string |
| 20 | Options []string |
| 21 | Into string |
| 22 | Columns []string |
| 23 | Values [][]interface{} |
| 24 | Suffixes []Sqlizer |
| 25 | Select *SelectBuilder |
| 26 | } |
| 27 | |
| 28 | func (d *insertData) Exec() (sql.Result, error) { |
| 29 | if d.RunWith == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected