diff options
Diffstat (limited to 'src/include/executor/execFlatten.h')
-rw-r--r-- | src/include/executor/execFlatten.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/include/executor/execFlatten.h b/src/include/executor/execFlatten.h index c7d85e2e6da..3fa3673b201 100644 --- a/src/include/executor/execFlatten.h +++ b/src/include/executor/execFlatten.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: execFlatten.h,v 1.11 2000/01/26 05:58:05 momjian Exp $ + * $Id: execFlatten.h,v 1.12 2000/08/24 03:29:10 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -15,11 +15,14 @@ #define EXECFLATTEN_H #include "nodes/execnodes.h" -#include "nodes/relation.h" +#include "nodes/parsenodes.h" -extern Datum ExecEvalIter(Iter *iterNode, ExprContext *econtext, bool *resultIsNull, bool *iterIsDone); -extern void ExecEvalFjoin(TargetEntry *tlist, ExprContext *econtext, bool *isNullVect, bool *fj_isDone); +extern Datum ExecEvalIter(Iter *iterNode, ExprContext *econtext, + bool *isNull, ExprDoneCond *isDone); + +extern void ExecEvalFjoin(TargetEntry *tlist, ExprContext *econtext, + bool *isNullVect, ExprDoneCond *fj_isDone); #endif /* EXECFLATTEN_H */ |