postgresql/src/include/executor/execFlatten.h

29 lines
792 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* execFlatten.h
* prototypes for execFlatten.c.
*
*
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
2001-03-21 23:01:46 -05:00
* $Id: execFlatten.h,v 1.14 2001/03/22 04:00:44 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef EXECFLATTEN_H
#define EXECFLATTEN_H
1997-11-25 20:14:33 -05:00
#include "nodes/execnodes.h"
#include "nodes/parsenodes.h"
1997-11-25 20:14:33 -05:00
extern Datum ExecEvalIter(Iter *iterNode, ExprContext *econtext,
2001-03-21 23:01:46 -05:00
bool *isNull, ExprDoneCond *isDone);
extern void ExecEvalFjoin(TargetEntry *tlist, ExprContext *econtext,
2001-03-21 23:01:46 -05:00
bool *isNullVect, ExprDoneCond *fj_isDone);
#endif /* EXECFLATTEN_H */