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/nodeBitmapHeapscan.c | |
parent | f92e8a4b5ee6a22252cbba012d629f5cefef913f (diff) | |
download | postgresql-421d7d8edb1bef2c354fe27f2ef4c4e8b6c1faf7.tar.gz postgresql-421d7d8edb1bef2c354fe27f2ef4c4e8b6c1faf7.zip |
Remove no-longer-needed ExecCountSlots infrastructure.
Diffstat (limited to 'src/backend/executor/nodeBitmapHeapscan.c')
-rw-r--r-- | src/backend/executor/nodeBitmapHeapscan.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/backend/executor/nodeBitmapHeapscan.c b/src/backend/executor/nodeBitmapHeapscan.c index 306e7f6e177..6adc7d66ee9 100644 --- a/src/backend/executor/nodeBitmapHeapscan.c +++ b/src/backend/executor/nodeBitmapHeapscan.c @@ -21,7 +21,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapHeapscan.c,v 1.35 2009/06/11 14:48:57 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapHeapscan.c,v 1.36 2009/09/27 21:10:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -597,8 +597,6 @@ ExecInitBitmapHeapScan(BitmapHeapScan *node, EState *estate, int eflags) ExecInitExpr((Expr *) node->bitmapqualorig, (PlanState *) scanstate); -#define BITMAPHEAPSCAN_NSLOTS 2 - /* * tuple table initialization */ @@ -646,10 +644,3 @@ ExecInitBitmapHeapScan(BitmapHeapScan *node, EState *estate, int eflags) */ return scanstate; } - -int -ExecCountSlotsBitmapHeapScan(BitmapHeapScan *node) -{ - return ExecCountSlotsNode(outerPlan((Plan *) node)) + - ExecCountSlotsNode(innerPlan((Plan *) node)) + BITMAPHEAPSCAN_NSLOTS; -} |