*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapAnd.c,v 1.1 2005/04/19 22:35:12 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapAnd.c,v 1.2 2005/04/20 15:48:36 tgl Exp $
*
*-------------------------------------------------------------------------
*/
PlanState **bitmapplanstates;
int nplans;
int i;
+ ListCell *l;
Plan *initNode;
CXT1_printf("ExecInitBitmapAnd: context is %d\n", CurrentMemoryContext);
* call ExecInitNode on each of the plans to be executed and save the
* results into the array "bitmapplanstates".
*/
- for (i = 0; i < nplans; i++)
+ i = 0;
+ foreach(l, node->bitmapplans)
{
- initNode = (Plan *) list_nth(node->bitmapplans, i);
+ initNode = (Plan *) lfirst(l);
bitmapplanstates[i] = ExecInitNode(initNode, estate);
+ i++;
}
return bitmapandstate;
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapIndexscan.c,v 1.1 2005/04/19 22:35:12 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapIndexscan.c,v 1.2 2005/04/20 15:48:36 tgl Exp $
*
*-------------------------------------------------------------------------
*/
scandesc = node->biss_ScanDesc;
/*
- * Prepare result bitmap
+ * Prepare the result bitmap. Normally we just create a new one to pass
+ * back; however, our parent node is allowed to store a pre-made one
+ * into node->biss_result, in which case we just OR our tuple IDs into
+ * the existing bitmap. (This saves needing explicit UNION steps.)
*/
- tbm = tbm_create(work_mem * 1024L);
+ if (node->biss_result)
+ {
+ tbm = node->biss_result;
+ node->biss_result = NULL; /* reset for next time */
+ }
+ else
+ {
+ /* XXX should we use less than work_mem for this? */
+ tbm = tbm_create(work_mem * 1024L);
+ }
/*
* Get TIDs from index and insert into bitmap
indexstate->ss.ps.plan = (Plan *) node;
indexstate->ss.ps.state = estate;
+ /* normally we don't make the result bitmap till runtime */
+ indexstate->biss_result = NULL;
+
/*
* Miscellaneous initialization
*
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapOr.c,v 1.1 2005/04/19 22:35:12 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/nodeBitmapOr.c,v 1.2 2005/04/20 15:48:36 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#include "executor/execdebug.h"
#include "executor/instrument.h"
#include "executor/nodeBitmapOr.h"
+#include "miscadmin.h"
/* ----------------------------------------------------------------
PlanState **bitmapplanstates;
int nplans;
int i;
+ ListCell *l;
Plan *initNode;
CXT1_printf("ExecInitBitmapOr: context is %d\n", CurrentMemoryContext);
* call ExecInitNode on each of the plans to be executed and save the
* results into the array "bitmapplanstates".
*/
- for (i = 0; i < nplans; i++)
+ i = 0;
+ foreach(l, node->bitmapplans)
{
- initNode = (Plan *) list_nth(node->bitmapplans, i);
+ initNode = (Plan *) lfirst(l);
bitmapplanstates[i] = ExecInitNode(initNode, estate);
+ i++;
}
return bitmaporstate;
PlanState *subnode = bitmapplans[i];
TIDBitmap *subresult;
- subresult = (TIDBitmap *) MultiExecProcNode(subnode);
+ /*
+ * We can special-case BitmapIndexScan children to avoid an
+ * explicit tbm_union step for each child: just pass down the
+ * current result bitmap and let the child OR directly into it.
+ */
+ if (IsA(subnode, BitmapIndexScanState))
+ {
+ if (result == NULL) /* first subplan */
+ {
+ /* XXX should we use less than work_mem for this? */
+ result = tbm_create(work_mem * 1024L);
+ }
+
+ ((BitmapIndexScanState *) subnode)->biss_result = result;
- if (!subresult || !IsA(subresult, TIDBitmap))
- elog(ERROR, "unrecognized result from subplan");
+ subresult = (TIDBitmap *) MultiExecProcNode(subnode);
- if (result == NULL)
- result = subresult; /* first subplan */
+ if (subresult != result)
+ elog(ERROR, "unrecognized result from subplan");
+ }
else
{
- tbm_union(result, subresult);
- tbm_free(subresult);
+ /* standard implementation */
+ subresult = (TIDBitmap *) MultiExecProcNode(subnode);
+
+ if (!subresult || !IsA(subresult, TIDBitmap))
+ elog(ERROR, "unrecognized result from subplan");
+
+ if (result == NULL)
+ result = subresult; /* first subplan */
+ else
+ {
+ tbm_union(result, subresult);
+ tbm_free(subresult);
+ }
}
}
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.126 2005/04/19 22:35:17 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.127 2005/04/20 15:48:36 tgl Exp $
*
*-------------------------------------------------------------------------
*/
/* ----------------
* BitmapIndexScanState information
*
+ * result bitmap to return output into, or NULL
* ScanKeys Skey structures to scan index rel
* NumScanKeys number of Skey structs
* RuntimeKeyInfo array of exprstates for Skeys
typedef struct BitmapIndexScanState
{
ScanState ss; /* its first field is NodeTag */
+ TIDBitmap *biss_result;
ScanKey biss_ScanKeys;
int biss_NumScanKeys;
ExprState **biss_RuntimeKeyInfo;