()
| 430 | } |
| 431 | |
| 432 | func (sel *selector) QueryRow() (*sql.Row, error) { |
| 433 | return sel.QueryRowContext(sel.SQL().sess.Context()) |
| 434 | } |
| 435 | |
| 436 | func (sel *selector) QueryRowContext(ctx context.Context) (*sql.Row, error) { |
| 437 | sq, err := sel.build() |
nothing calls this directly
no test coverage detected