diff options
author | Bruce Momjian <bruce@momjian.us> | 1996-12-26 17:53:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1996-12-26 17:53:40 +0000 |
commit | 9643e8ba37252e79ea46cb023026db19b3017b07 (patch) | |
tree | c86f562baa4b22f3dc28c5cf81b79d997fe98512 | |
parent | 0cb22cb7eff10768c9fcef3c78668cd20ccb53af (diff) | |
download | postgresql-9643e8ba37252e79ea46cb023026db19b3017b07.tar.gz postgresql-9643e8ba37252e79ea46cb023026db19b3017b07.zip |
Added needed prototype.
Bruce Momjian
-rw-r--r-- | src/include/executor/executor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 0fc4a0834aa..3bf8324c254 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.6 1996/11/13 20:51:31 scrappy Exp $ + * $Id: executor.h,v 1.7 1996/12/26 17:53:40 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -52,6 +52,7 @@ extern HeapTuple ExecRemoveJunk(JunkFilter *junkfilter, TupleTableSlot *slot); /* * prototypes from functions in execMain.c */ +extern int ExecutorLimit(int limit); extern TupleDesc ExecutorStart(QueryDesc *queryDesc, EState *estate); extern TupleTableSlot* ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count); extern void ExecutorEnd(QueryDesc *queryDesc, EState *estate); |