()
| 27 | } |
| 28 | |
| 29 | func (q *UpdateQuery) String() string { |
| 30 | b, err := q.AppendQuery(defaultFmter, nil) |
| 31 | if err != nil { |
| 32 | panic(err) |
| 33 | } |
| 34 | return string(b) |
| 35 | } |
| 36 | |
| 37 | func (q *UpdateQuery) Operation() QueryOp { |
| 38 | return UpdateOp |
nothing calls this directly
no test coverage detected