diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-09-27 21:10:53 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-09-27 21:10:53 +0000 |
commit | 421d7d8edb1bef2c354fe27f2ef4c4e8b6c1faf7 (patch) | |
tree | 2c5a1cb881aff49aba26c282c98fb218be3ca7c7 /src/backend/executor/nodeAgg.c | |
parent | f92e8a4b5ee6a22252cbba012d629f5cefef913f (diff) | |
download | postgresql-421d7d8edb1bef2c354fe27f2ef4c4e8b6c1faf7.tar.gz postgresql-421d7d8edb1bef2c354fe27f2ef4c4e8b6c1faf7.zip |
Remove no-longer-needed ExecCountSlots infrastructure.
Diffstat (limited to 'src/backend/executor/nodeAgg.c')
-rw-r--r-- | src/backend/executor/nodeAgg.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/backend/executor/nodeAgg.c b/src/backend/executor/nodeAgg.c index 4548fe9a17d..00234f0e236 100644 --- a/src/backend/executor/nodeAgg.c +++ b/src/backend/executor/nodeAgg.c @@ -63,7 +63,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/nodeAgg.c,v 1.168 2009/07/23 20:45:27 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/executor/nodeAgg.c,v 1.169 2009/09/27 21:10:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1239,8 +1239,6 @@ ExecInitAgg(Agg *node, EState *estate, int eflags) ALLOCSET_DEFAULT_INITSIZE, ALLOCSET_DEFAULT_MAXSIZE); -#define AGG_NSLOTS 3 - /* * tuple table initialization */ @@ -1604,14 +1602,6 @@ GetAggInitVal(Datum textInitVal, Oid transtype) return initVal; } -int -ExecCountSlotsAgg(Agg *node) -{ - return ExecCountSlotsNode(outerPlan(node)) + - ExecCountSlotsNode(innerPlan(node)) + - AGG_NSLOTS; -} - void ExecEndAgg(AggState *node) { |