()
| 202 | } |
| 203 | |
| 204 | func (pag *paginator) Compile() (string, error) { |
| 205 | pq, err := pag.buildWithCursor() |
| 206 | if err != nil { |
| 207 | return "", err |
| 208 | } |
| 209 | return pq.sel.(*selector).Compile() |
| 210 | } |
| 211 | |
| 212 | func (pag *paginator) Query() (*sql.Rows, error) { |
| 213 | pq, err := pag.buildWithCursor() |
nothing calls this directly
no test coverage detected