summaryrefslogtreecommitdiff
path: root/src/include/tcop
diff options
context:
space:
mode:
authorBruce Momjian2006-09-02 18:17:18 +0000
committerBruce Momjian2006-09-02 18:17:18 +0000
commit6c785d599d2053d27a8d3395dd3802e6ca2be9b1 (patch)
tree49529f76003c6d9cfeb1fb2cb79deddf682b7d37 /src/include/tcop
parent87eb130ad86465b7b9719bdc178eb2dcc0493a22 (diff)
Change FETCH/MOVE to use int8.
Dhanaraj M
Diffstat (limited to 'src/include/tcop')
-rw-r--r--src/include/tcop/pquery.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/tcop/pquery.h b/src/include/tcop/pquery.h
index 9a52009d693..eeeaf70a6b1 100644
--- a/src/include/tcop/pquery.h
+++ b/src/include/tcop/pquery.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/tcop/pquery.h,v 1.37 2006/03/05 15:59:00 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/tcop/pquery.h,v 1.38 2006/09/02 18:17:17 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -30,13 +30,13 @@ extern void PortalStart(Portal portal, ParamListInfo params,
extern void PortalSetResultFormat(Portal portal, int nFormats,
int16 *formats);
-extern bool PortalRun(Portal portal, long count,
+extern bool PortalRun(Portal portal, int64 count,
DestReceiver *dest, DestReceiver *altdest,
char *completionTag);
-extern long PortalRunFetch(Portal portal,
+extern int64 PortalRunFetch(Portal portal,
FetchDirection fdirection,
- long count,
+ int64 count,
DestReceiver *dest);
#endif /* PQUERY_H */