1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1999-02-13 18:22:53 -05: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
|
|
|
|
|
*
|
1999-07-16 13:07:40 -04:00
|
|
|
* $Id: execFlatten.h,v 1.10 1999/07/16 17:07:31 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/execnodes.h"
|
1999-07-16 13:07:40 -04:00
|
|
|
#include "nodes/relation.h"
|
1997-11-25 20:14:33 -05:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
1998-09-01 00:40:42 -04:00
|
|
|
#endif /* EXECFLATTEN_H */
|