diff options
| author | Bruce Momjian | 2006-09-02 18:17:18 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2006-09-02 18:17:18 +0000 |
| commit | 6c785d599d2053d27a8d3395dd3802e6ca2be9b1 (patch) | |
| tree | 49529f76003c6d9cfeb1fb2cb79deddf682b7d37 /src/include/executor/spi.h | |
| parent | 87eb130ad86465b7b9719bdc178eb2dcc0493a22 (diff) | |
Change FETCH/MOVE to use int8.
Dhanaraj M
Diffstat (limited to 'src/include/executor/spi.h')
| -rw-r--r-- | src/include/executor/spi.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/executor/spi.h b/src/include/executor/spi.h index 0d91290968d..b8833b355a1 100644 --- a/src/include/executor/spi.h +++ b/src/include/executor/spi.h @@ -2,7 +2,7 @@ * * spi.h * - * $PostgreSQL: pgsql/src/include/executor/spi.h,v 1.55 2006/08/27 23:47:58 tgl Exp $ + * $PostgreSQL: pgsql/src/include/executor/spi.h,v 1.56 2006/09/02 18:17:17 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -126,8 +126,8 @@ extern void SPI_freetuptable(SPITupleTable *tuptable); extern Portal SPI_cursor_open(const char *name, void *plan, Datum *Values, const char *Nulls, bool read_only); extern Portal SPI_cursor_find(const char *name); -extern void SPI_cursor_fetch(Portal portal, bool forward, long count); -extern void SPI_cursor_move(Portal portal, bool forward, long count); +extern void SPI_cursor_fetch(Portal portal, bool forward, int64 count); +extern void SPI_cursor_move(Portal portal, bool forward, int64 count); extern void SPI_cursor_close(Portal portal); extern void AtEOXact_SPI(bool isCommit); |
