diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-06 22:31:24 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-06 22:31:24 +0000 |
commit | 2103b7baa26fe25cc2b5bee802028caeabb28113 (patch) | |
tree | f7516bbb3b18fca352fd638d567b2b0bf3a5a0bd /src/include/nodes/plannodes.h | |
parent | fc9814d17e7701bac198c99f8ab9f67c8468797f (diff) | |
download | postgresql-2103b7baa26fe25cc2b5bee802028caeabb28113.tar.gz postgresql-2103b7baa26fe25cc2b5bee802028caeabb28113.zip |
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/nodes/plannodes.h')
-rw-r--r-- | src/include/nodes/plannodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index 63c8f20d807..0cf9d0bac91 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.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: plannodes.h,v 1.59 2002/11/06 00:00:44 tgl Exp $ + * $Id: plannodes.h,v 1.60 2002/11/06 22:31:24 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -349,6 +349,7 @@ typedef struct Agg AggStrategy aggstrategy; int numCols; /* number of grouping columns */ AttrNumber *grpColIdx; /* their indexes in the target list */ + long numGroups; /* estimated number of groups in input */ AggState *aggstate; } Agg; |