1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* execFlatten.h--
|
1997-09-07 01:04:48 -04:00
|
|
|
* prototypes for execFlatten.c.
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
1997-11-25 20:14:33 -05:00
|
|
|
* $Id: execFlatten.h,v 1.6 1997/11/26 01:12:36 momjian Exp $
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef EXECFLATTEN_H
|
|
|
|
|
#define EXECFLATTEN_H
|
|
|
|
|
|
1997-11-25 20:14:33 -05:00
|
|
|
#include "nodes/relation.h"
|
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
|
|
1997-09-08 17:56:23 -04:00
|
|
|
extern Datum ExecEvalIter(Iter *iterNode, ExprContext *econtext, bool *resultIsNull, bool *iterIsDone);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-08 17:56:23 -04:00
|
|
|
extern void ExecEvalFjoin(TargetEntry *tlist, ExprContext *econtext, bool *isNullVect, bool *fj_isDone);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
|
|
|
|
|
1997-09-07 01:04:48 -04:00
|
|
|
#endif /* EXECFLATTEN_H */
|