(fmter QueryFormatter, b []byte)
| 1305 | var _ QueryAppender = (*Query)(nil) |
| 1306 | |
| 1307 | func (q *Query) AppendQuery(fmter QueryFormatter, b []byte) ([]byte, error) { |
| 1308 | return NewSelectQuery(q).AppendQuery(fmter, b) |
| 1309 | } |
| 1310 | |
| 1311 | // Exists returns true or false depending if there are any rows matching the query. |
| 1312 | func (q *Query) Exists() (bool, error) { |
nothing calls this directly
no test coverage detected