aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor/nodeTee.h
blob: 7235030d6706b46c98ec84def2f7ff1df2629231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*-------------------------------------------------------------------------
 *
 * nodeTee.h--
 *	  support functions for a Tee executor node
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 * $Id: nodeTee.h,v 1.2 1997/09/07 04:58:00 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 */