mirror of https://github.com/postgres/postgres
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.
23 lines
702 B
23 lines
702 B
|
30 years ago
|
/*-------------------------------------------------------------------------
|
||
|
|
*
|
||
|
|
* nodeTee.h--
|
||
|
|
* support functions for a Tee executor node
|
||
|
|
*
|
||
|
|
* Copyright (c) 1994, Regents of the University of California
|
||
|
|
*
|
||
|
30 years ago
|
* $Id: nodeTee.h,v 1.1 1996/08/28 07:22:26 scrappy Exp $
|
||
|
30 years ago
|
*
|
||
|
|
*-------------------------------------------------------------------------
|
||
|
|
*/
|
||
|
|
|
||
|
|
#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 */
|