summaryrefslogtreecommitdiff
path: root/src/include/executor/nodeHash.h
diff options
context:
space:
mode:
authorTom Lane2002-11-06 22:31:24 +0000
committerTom Lane2002-11-06 22:31:24 +0000
commitf7dce00d65334bf1333f91d5247012fc14f03e1d (patch)
tree6ad58ec7e0928e4d42fe3c036d7ea5fed5a46113 /src/include/executor/nodeHash.h
parent2993cd838878c642e76423426b16f79cb7d66e37 (diff)
Phase 2 of hashed-aggregation project. nodeAgg.c now knows how to do
hashed aggregation, but there's not yet planner support for it.
Diffstat (limited to 'src/include/executor/nodeHash.h')
-rw-r--r--src/include/executor/nodeHash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/executor/nodeHash.h b/src/include/executor/nodeHash.h
index 8c0ec2adee..b7f8078cdf 100644
--- a/src/include/executor/nodeHash.h
+++ b/src/include/executor/nodeHash.h
@@ -36,5 +36,6 @@ extern void ExecChooseHashTableSize(double ntuples, int tupwidth,
int *virtualbuckets,
int *physicalbuckets,
int *numbatches);
+extern uint32 ComputeHashFunc(Datum key, int typLen, bool byVal);
#endif /* NODEHASH_H */