1999-11-24 11:52:50 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeTidscan.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2000-01-26 00:58:53 -05:00
|
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1999-11-24 11:52:50 -05:00
|
|
|
*
|
2000-01-26 00:58:53 -05:00
|
|
|
* $Id: nodeTidscan.h,v 1.2 2000/01/26 05:58:05 momjian Exp $
|
1999-11-24 11:52:50 -05:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODETIDSCAN_H
|
|
|
|
|
#define NODETIDSCAN_H
|
|
|
|
|
|
|
|
|
|
#include "nodes/plannodes.h"
|
|
|
|
|
|
|
|
|
|
extern TupleTableSlot *ExecTidScan(TidScan *node);
|
|
|
|
|
extern void ExecTidReScan(TidScan *node, ExprContext *exprCtxt, Plan *parent);
|
|
|
|
|
extern void ExecEndTidScan(TidScan *node);
|
|
|
|
|
extern void ExecTidMarkPos(TidScan *node);
|
|
|
|
|
extern void ExecTidRestrPos(TidScan *node);
|
|
|
|
|
extern bool ExecInitTidScan(TidScan *node, EState *estate, Plan *parent);
|
|
|
|
|
extern int ExecCountSlotsTidScan(TidScan *node);
|
|
|
|
|
extern void ExecTidReScan(TidScan *node, ExprContext *exprCtxt, Plan *parent);
|
|
|
|
|
|
|
|
|
|
#endif /* NODETIDSCAN_H */
|