aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor/nodeGroup.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-01-10 23:54:24 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-01-10 23:54:24 +0000
commit1afac12910b82cf68d064284391209f41a6adcf9 (patch)
treedee75ebb24c486541ab2cf55b29f71a367dc0a7b /src/include/executor/nodeGroup.h
parentc83702606c3fb8c2bcef7b6f57232c982ff62ab3 (diff)
downloadpostgresql-1afac12910b82cf68d064284391209f41a6adcf9.tar.gz
postgresql-1afac12910b82cf68d064284391209f41a6adcf9.zip
Create a new file executor/execGrouping.c to centralize utility routines
shared by nodeGroup, nodeAgg, and soon nodeSubplan.
Diffstat (limited to 'src/include/executor/nodeGroup.h')
-rw-r--r--src/include/executor/nodeGroup.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/include/executor/nodeGroup.h b/src/include/executor/nodeGroup.h
index 211e55b6cad..2a6b733c9d2 100644
--- a/src/include/executor/nodeGroup.h
+++ b/src/include/executor/nodeGroup.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeGroup.h,v 1.23 2002/12/05 15:50:37 tgl Exp $
+ * $Id: nodeGroup.h,v 1.24 2003/01/10 23:54:24 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -22,15 +22,4 @@ extern TupleTableSlot *ExecGroup(GroupState *node);
extern void ExecEndGroup(GroupState *node);
extern void ExecReScanGroup(GroupState *node, ExprContext *exprCtxt);
-extern bool execTuplesMatch(HeapTuple tuple1,
- HeapTuple tuple2,
- TupleDesc tupdesc,
- int numCols,
- AttrNumber *matchColIdx,
- FmgrInfo *eqfunctions,
- MemoryContext evalContext);
-extern FmgrInfo *execTuplesMatchPrepare(TupleDesc tupdesc,
- int numCols,
- AttrNumber *matchColIdx);
-
#endif /* NODEGROUP_H */