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
|
|
|
*
|
|
|
|
|
*
|
2001-01-24 14:43:33 -05:00
|
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
2000-01-26 00:58:53 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
2001-01-24 14:43:33 -05:00
|
|
|
* $Id: execFlatten.h,v 1.13 2001/01/24 19:43:23 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"
|
2000-08-23 23:29:15 -04:00
|
|
|
#include "nodes/parsenodes.h"
|
1997-11-25 20:14:33 -05:00
|
|
|
|
1996-07-09 02:22:35 -04:00
|
|
|
|
2000-08-23 23:29:15 -04:00
|
|
|
extern Datum ExecEvalIter(Iter *iterNode, ExprContext *econtext,
|
|
|
|
|
bool *isNull, ExprDoneCond *isDone);
|
|
|
|
|
|
|
|
|
|
extern void ExecEvalFjoin(TargetEntry *tlist, ExprContext *econtext,
|
|
|
|
|
bool *isNullVect, ExprDoneCond *fj_isDone);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
|
|
|
|
|
1998-09-01 00:40:42 -04:00
|
|
|
#endif /* EXECFLATTEN_H */
|