]> granicus.if.org Git - postgresql/blob - src/include/executor/nodeSeqscan.h
pgindent run on all C files. Java run to follow. initdb/regression
[postgresql] / src / include / executor / nodeSeqscan.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeSeqscan.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: nodeSeqscan.h,v 1.12 2001/10/25 05:49:59 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef NODESEQSCAN_H
15 #define NODESEQSCAN_H
16
17 #include "nodes/plannodes.h"
18
19 extern TupleTableSlot *ExecSeqScan(SeqScan *node);
20 extern bool ExecInitSeqScan(SeqScan *node, EState *estate, Plan *parent);
21 extern int      ExecCountSlotsSeqScan(SeqScan *node);
22 extern void ExecEndSeqScan(SeqScan *node);
23 extern void ExecSeqReScan(SeqScan *node, ExprContext *exprCtxt, Plan *parent);
24 extern void ExecSeqMarkPos(SeqScan *node);
25 extern void ExecSeqRestrPos(SeqScan *node);
26 #endif   /* NODESEQSCAN_H */