(ctx context.Context)
| 234 | } |
| 235 | |
| 236 | func (pag *paginator) QueryRowContext(ctx context.Context) (*sql.Row, error) { |
| 237 | pq, err := pag.buildWithCursor() |
| 238 | if err != nil { |
| 239 | return nil, err |
| 240 | } |
| 241 | return pq.sel.QueryRowContext(ctx) |
| 242 | } |
| 243 | |
| 244 | func (pag *paginator) Prepare() (*sql.Stmt, error) { |
| 245 | pq, err := pag.buildWithCursor() |
nothing calls this directly
no test coverage detected