()
| 226 | } |
| 227 | |
| 228 | func (pag *paginator) QueryRow() (*sql.Row, error) { |
| 229 | pq, err := pag.buildWithCursor() |
| 230 | if err != nil { |
| 231 | return nil, err |
| 232 | } |
| 233 | return pq.sel.QueryRow() |
| 234 | } |
| 235 | |
| 236 | func (pag *paginator) QueryRowContext(ctx context.Context) (*sql.Row, error) { |
| 237 | pq, err := pag.buildWithCursor() |
nothing calls this directly
no test coverage detected