1 /*-------------------------------------------------------------------------
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
12 *-------------------------------------------------------------------------
17 #include "nodes/execnodes.h"
19 extern int ExecCountSlotsTidScan(TidScan
*node
);
20 extern TidScanState
*ExecInitTidScan(TidScan
*node
, EState
*estate
, int eflags
);
21 extern TupleTableSlot
*ExecTidScan(TidScanState
*node
);
22 extern void ExecEndTidScan(TidScanState
*node
);
23 extern void ExecTidMarkPos(TidScanState
*node
);
24 extern void ExecTidRestrPos(TidScanState
*node
);
25 extern void ExecTidReScan(TidScanState
*node
, ExprContext
*exprCtxt
);
27 #endif /* NODETIDSCAN_H */