()
| 23 | } |
| 24 | |
| 25 | func (q *InsertQuery) String() string { |
| 26 | b, err := q.AppendQuery(defaultFmter, nil) |
| 27 | if err != nil { |
| 28 | panic(err) |
| 29 | } |
| 30 | return string(b) |
| 31 | } |
| 32 | |
| 33 | func (q *InsertQuery) Operation() QueryOp { |
| 34 | return InsertOp |
nothing calls this directly
no test coverage detected