()
| 186 | } |
| 187 | |
| 188 | func (pag *paginator) String() string { |
| 189 | pq, err := pag.buildWithCursor() |
| 190 | if err != nil { |
| 191 | panic(err.Error()) |
| 192 | } |
| 193 | return pq.sel.String() |
| 194 | } |
| 195 | |
| 196 | func (pag *paginator) Arguments() []interface{} { |
| 197 | pq, err := pag.buildWithCursor() |
nothing calls this directly
no test coverage detected