qStmt is an unexposed wrapper which lets you use a Stmt as a Queryer & Execer by implementing those interfaces and ignoring the `query` argument.
| 550 | // qStmt is an unexposed wrapper which lets you use a Stmt as a Queryer & Execer by |
| 551 | // implementing those interfaces and ignoring the `query` argument. |
| 552 | type qStmt struct{ *Stmt } |
| 553 | |
| 554 | func (q *qStmt) Query(query string, args ...interface{}) (*sql.Rows, error) { |
| 555 | return q.Stmt.Query(args...) |
nothing calls this directly
no outgoing calls
no test coverage detected