]> granicus.if.org Git - postgresql/blob - src/include/executor/nodeSeqscan.h
Massive commit to run PGINDENT on all *.c and *.h files.
[postgresql] / src / include / executor / nodeSeqscan.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeSeqscan.h--
4  *
5  *
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: nodeSeqscan.h,v 1.3 1997/09/07 04:57:59 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef NODESEQSCAN_H
14 #define NODESEQSCAN_H
15
16 extern TupleTableSlot *ExecSeqScan(SeqScan * node);
17 extern bool             ExecInitSeqScan(SeqScan * node, EState * estate, Plan * parent);
18 extern int              ExecCountSlotsSeqScan(SeqScan * node);
19 extern void             ExecEndSeqScan(SeqScan * node);
20 extern void             ExecSeqReScan(SeqScan * node, ExprContext * exprCtxt, Plan * parent);
21 extern void             ExecSeqMarkPos(SeqScan * node);
22 extern void             ExecSeqRestrPos(SeqScan * node);
23
24 #endif                                                  /* NODESEQSCAN_H */