| 11 | ) |
| 12 | |
| 13 | type updateData struct { |
| 14 | PlaceholderFormat PlaceholderFormat |
| 15 | RunWith BaseRunner |
| 16 | Prefixes []Sqlizer |
| 17 | Table string |
| 18 | SetClauses []setClause |
| 19 | From Sqlizer |
| 20 | WhereParts []Sqlizer |
| 21 | OrderBys []string |
| 22 | Limit string |
| 23 | Offset string |
| 24 | Suffixes []Sqlizer |
| 25 | } |
| 26 | |
| 27 | type setClause struct { |
| 28 | column string |
nothing calls this directly
no outgoing calls
no test coverage detected