(query interface{}, args ...interface{})
| 183 | } |
| 184 | |
| 185 | func (b *sqlBuilder) QueryRow(query interface{}, args ...interface{}) (*sql.Row, error) { |
| 186 | return b.QueryRowContext(b.sess.Context(), query, args...) |
| 187 | } |
| 188 | |
| 189 | func (b *sqlBuilder) QueryRowContext(ctx context.Context, query interface{}, args ...interface{}) (*sql.Row, error) { |
| 190 | switch q := query.(type) { |
nothing calls this directly
no test coverage detected