You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeTee.h--
|
|
|
|
|
* support functions for a Tee executor node
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
|
|
|
|
* $Id: nodeTee.h,v 1.3 1997/09/08 02:36:41 momjian Exp $
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef NODETEE_H
|
|
|
|
|
#define NODETEE_H
|
|
|
|
|
|
|
|
|
|
extern TupleTableSlot *ExecTee(Tee * node, Plan * parent);
|
|
|
|
|
extern bool ExecInitTee(Tee * node, EState * estate, Plan * parent);
|
|
|
|
|
extern void ExecTeeReScan(Tee * node, ExprContext * exprCtxt, Plan * parent);
|
|
|
|
|
extern void ExecEndTee(Tee * node, Plan * parent);
|
|
|
|
|
extern int ExecCountSlotsTee(Tee * node);
|
|
|
|
|
|
|
|
|
|
#endif /* NODETEE_H */
|