Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / executor / nodeSeqscan.h
blob4497dd5471664d3a9866567bf464f2cd3ac0ad71
1 /*-------------------------------------------------------------------------
3 * nodeSeqscan.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 NODESEQSCAN_H
15 #define NODESEQSCAN_H
17 #include "nodes/execnodes.h"
19 extern int ExecCountSlotsSeqScan(SeqScan *node);
20 extern SeqScanState *ExecInitSeqScan(SeqScan *node, EState *estate, int eflags);
21 extern TupleTableSlot *ExecSeqScan(SeqScanState *node);
22 extern void ExecEndSeqScan(SeqScanState *node);
23 extern void ExecSeqMarkPos(SeqScanState *node);
24 extern void ExecSeqRestrPos(SeqScanState *node);
25 extern void ExecSeqReScan(SeqScanState *node, ExprContext *exprCtxt);
27 #endif /* NODESEQSCAN_H */