(ctx context.Context)
| 218 | } |
| 219 | |
| 220 | func (pag *paginator) QueryContext(ctx context.Context) (*sql.Rows, error) { |
| 221 | pq, err := pag.buildWithCursor() |
| 222 | if err != nil { |
| 223 | return nil, err |
| 224 | } |
| 225 | return pq.sel.QueryContext(ctx) |
| 226 | } |
| 227 | |
| 228 | func (pag *paginator) QueryRow() (*sql.Row, error) { |
| 229 | pq, err := pag.buildWithCursor() |
nothing calls this directly
no test coverage detected