diff options
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r-- | src/include/executor/executor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index bed2c57ec57..3c85762dfaf 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.42 2000/01/26 05:58:05 momjian Exp $ + * $Id: executor.h,v 1.43 2000/05/29 01:59:11 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -59,6 +59,8 @@ extern TupleTableSlot *ExecutorRun(QueryDesc *queryDesc, EState *estate, extern void ExecutorEnd(QueryDesc *queryDesc, EState *estate); extern void ExecConstraints(char *caller, Relation rel, HeapTuple tuple, EState *estate); +extern TupleTableSlot *EvalPlanQual(EState *estate, Index rti, + ItemPointer tid); /* * prototypes from functions in execProcnode.c |