diff options
| author | Bruce Momjian <bruce@momjian.us> | 2006-09-02 18:17:18 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2006-09-02 18:17:18 +0000 |
| commit | 6c785d599d2053d27a8d3395dd3802e6ca2be9b1 (patch) | |
| tree | 49529f76003c6d9cfeb1fb2cb79deddf682b7d37 /src/include/nodes | |
| parent | 87eb130ad86465b7b9719bdc178eb2dcc0493a22 (diff) | |
| download | postgresql-6c785d599d2053d27a8d3395dd3802e6ca2be9b1.tar.gz | |
Change FETCH/MOVE to use int8.
Dhanaraj M
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/parsenodes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 9e80839673..acdb05ed4f 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.326 2006/08/30 23:34:22 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.327 2006/09/02 18:17:17 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1439,13 +1439,13 @@ typedef enum FetchDirection FETCH_RELATIVE } FetchDirection; -#define FETCH_ALL LONG_MAX +#define FETCH_ALL LLONG_MAX typedef struct FetchStmt { NodeTag type; FetchDirection direction; /* see above */ - long howMany; /* number of rows, or position argument */ + int64 howMany; /* number of rows, or position argument */ char *portalname; /* name of portal (cursor) */ bool ismove; /* TRUE if MOVE */ } FetchStmt; |
