(ctx context.Context, query string, args ...interface{})
| 394 | } |
| 395 | |
| 396 | func (q *qStmt) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) { |
| 397 | return q.Stmt.QueryContext(ctx, args...) |
| 398 | } |
| 399 | |
| 400 | func (q *qStmt) QueryxContext(ctx context.Context, query string, args ...interface{}) (*Rows, error) { |
| 401 | r, err := q.Stmt.QueryContext(ctx, args...) |
nothing calls this directly
no test coverage detected