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