diff options
Diffstat (limited to 'src/backend/executor/nodeBitmapAnd.c')
-rw-r--r-- | src/backend/executor/nodeBitmapAnd.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/backend/executor/nodeBitmapAnd.c b/src/backend/executor/nodeBitmapAnd.c index cd90b633156..c974b9d1e35 100644 --- a/src/backend/executor/nodeBitmapAnd.c +++ b/src/backend/executor/nodeBitmapAnd.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapAnd.c,v 1.11 2009/01/01 17:23:41 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapAnd.c,v 1.12 2009/09/27 21:10:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -74,8 +74,6 @@ ExecInitBitmapAnd(BitmapAnd *node, EState *estate, int eflags) * ExecQual or ExecProject. They don't need any tuple slots either. */ -#define BITMAPAND_NSLOTS 0 - /* * call ExecInitNode on each of the plans to be executed and save the * results into the array "bitmapplanstates". @@ -91,17 +89,6 @@ ExecInitBitmapAnd(BitmapAnd *node, EState *estate, int eflags) return bitmapandstate; } -int -ExecCountSlotsBitmapAnd(BitmapAnd *node) -{ - ListCell *plan; - int nSlots = 0; - - foreach(plan, node->bitmapplans) - nSlots += ExecCountSlotsNode((Plan *) lfirst(plan)); - return nSlots + BITMAPAND_NSLOTS; -} - /* ---------------------------------------------------------------- * MultiExecBitmapAnd * ---------------------------------------------------------------- |