mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 09:27:04 +08:00
28 lines
920 B
C
28 lines
920 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeTidscan.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeTidscan.h,v 1.5 2001/01/24 19:43:23 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#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 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 */
|