diff options
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/nodeGroup.h | 16 | ||||
-rw-r--r-- | src/include/executor/nodeSubplan.h | 2 | ||||
-rw-r--r-- | src/include/executor/nodeTidscan.h | 4 |
3 files changed, 11 insertions, 11 deletions
diff --git a/src/include/executor/nodeGroup.h b/src/include/executor/nodeGroup.h index dd104b0af94..303516b167e 100644 --- a/src/include/executor/nodeGroup.h +++ b/src/include/executor/nodeGroup.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: nodeGroup.h,v 1.15 2000/01/27 18:11:41 tgl Exp $ + * $Id: nodeGroup.h,v 1.16 2000/04/12 17:16:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -23,13 +23,13 @@ extern void ExecEndGroup(Group *node); extern void ExecReScanGroup(Group *node, ExprContext *exprCtxt, Plan *parent); extern bool execTuplesMatch(HeapTuple tuple1, - HeapTuple tuple2, - TupleDesc tupdesc, - int numCols, - AttrNumber *matchColIdx, - FmgrInfo *eqfunctions); + HeapTuple tuple2, + TupleDesc tupdesc, + int numCols, + AttrNumber *matchColIdx, + FmgrInfo *eqfunctions); extern FmgrInfo *execTuplesMatchPrepare(TupleDesc tupdesc, - int numCols, - AttrNumber *matchColIdx); + int numCols, + AttrNumber *matchColIdx); #endif /* NODEGROUP_H */ diff --git a/src/include/executor/nodeSubplan.h b/src/include/executor/nodeSubplan.h index b25e4dee379..a56ae216f5e 100644 --- a/src/include/executor/nodeSubplan.h +++ b/src/include/executor/nodeSubplan.h @@ -10,7 +10,7 @@ #include "nodes/plannodes.h" extern Datum ExecSubPlan(SubPlan *node, List *pvar, ExprContext *econtext, - bool *isNull); + bool *isNull); extern bool ExecInitSubPlan(SubPlan *node, EState *estate, Plan *parent); extern void ExecReScanSetParamPlan(SubPlan *node, Plan *parent); extern void ExecSetParamPlan(SubPlan *node); diff --git a/src/include/executor/nodeTidscan.h b/src/include/executor/nodeTidscan.h index ffee4677eb7..58f18e4b8f4 100644 --- a/src/include/executor/nodeTidscan.h +++ b/src/include/executor/nodeTidscan.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: nodeTidscan.h,v 1.2 2000/01/26 05:58:05 momjian Exp $ + * $Id: nodeTidscan.h,v 1.3 2000/04/12 17:16:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -22,7 +22,7 @@ extern void ExecEndTidScan(TidScan *node); extern void ExecTidMarkPos(TidScan *node); extern void ExecTidRestrPos(TidScan *node); extern bool ExecInitTidScan(TidScan *node, EState *estate, Plan *parent); -extern int ExecCountSlotsTidScan(TidScan *node); +extern int ExecCountSlotsTidScan(TidScan *node); extern void ExecTidReScan(TidScan *node, ExprContext *exprCtxt, Plan *parent); #endif /* NODETIDSCAN_H */ |