diff options
Diffstat (limited to 'src/include/executor/nodeGroup.h')
-rw-r--r-- | src/include/executor/nodeGroup.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/include/executor/nodeGroup.h b/src/include/executor/nodeGroup.h index afe510d5eaf..dd104b0af94 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.14 2000/01/26 23:48:05 tgl Exp $ + * $Id: nodeGroup.h,v 1.15 2000/01/27 18:11:41 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -22,4 +22,14 @@ extern int ExecCountSlotsGroup(Group *node); 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); +extern FmgrInfo *execTuplesMatchPrepare(TupleDesc tupdesc, + int numCols, + AttrNumber *matchColIdx); + #endif /* NODEGROUP_H */ |