* SPI_scroll_cursor_fetch() * * Fetch rows in a scrollable cursor */
| 1885 | * Fetch rows in a scrollable cursor |
| 1886 | */ |
| 1887 | void |
| 1888 | SPI_scroll_cursor_fetch(Portal portal, FetchDirection direction, long count) |
| 1889 | { |
| 1890 | _SPI_cursor_operation(portal, |
| 1891 | direction, count, |
| 1892 | CreateDestReceiver(DestSPI)); |
| 1893 | /* we know that the DestSPI receiver doesn't need a destroy call */ |
| 1894 | } |
| 1895 | |
| 1896 | |
| 1897 | /* |
no test coverage detected