Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / executor / nodeTidscan.h
blob8b6dc5b9a6f7efb4263316bf58568e45a20e1228
1 /*-------------------------------------------------------------------------
3 * nodeTidscan.h
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef NODETIDSCAN_H
15 #define NODETIDSCAN_H
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 */