diff options
Diffstat (limited to 'src/include/executor/nodeSeqscan.h')
-rw-r--r-- | src/include/executor/nodeSeqscan.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/include/executor/nodeSeqscan.h b/src/include/executor/nodeSeqscan.h index 22154ea1f2c..d6afe03ac93 100644 --- a/src/include/executor/nodeSeqscan.h +++ b/src/include/executor/nodeSeqscan.h @@ -6,19 +6,19 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeSeqscan.h,v 1.4 1997/09/08 02:36:39 momjian Exp $ + * $Id: nodeSeqscan.h,v 1.5 1997/09/08 21:52:12 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef NODESEQSCAN_H #define NODESEQSCAN_H -extern TupleTableSlot *ExecSeqScan(SeqScan * node); -extern bool ExecInitSeqScan(SeqScan * node, EState * estate, Plan * parent); -extern int ExecCountSlotsSeqScan(SeqScan * node); -extern void ExecEndSeqScan(SeqScan * node); -extern void ExecSeqReScan(SeqScan * node, ExprContext * exprCtxt, Plan * parent); -extern void ExecSeqMarkPos(SeqScan * node); -extern void ExecSeqRestrPos(SeqScan * node); +extern TupleTableSlot *ExecSeqScan(SeqScan *node); +extern bool ExecInitSeqScan(SeqScan *node, EState *estate, Plan *parent); +extern int ExecCountSlotsSeqScan(SeqScan *node); +extern void ExecEndSeqScan(SeqScan *node); +extern void ExecSeqReScan(SeqScan *node, ExprContext *exprCtxt, Plan *parent); +extern void ExecSeqMarkPos(SeqScan *node); +extern void ExecSeqRestrPos(SeqScan *node); #endif /* NODESEQSCAN_H */ |