mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
First cut at planner support for bitmap index scans. Lots to do yet,
but the code is basically working. Along the way, rewrite the entire approach to processing OR index conditions, and make it work in join cases for the first time ever. orindxpath.c is now basically obsolete, but I left it in for the time being to allow easy comparison testing against the old implementation.
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/executor/nodeBitmapIndexscan.c,v 1.2 2005/04/20 15:48:36 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/executor/nodeBitmapIndexscan.c,v 1.3 2005/04/22 21:58:31 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -492,7 +492,8 @@ ExecInitBitmapIndexScan(BitmapIndexScan *node, EState *estate)
|
||||
indexstate->biss_RuntimeKeyInfo = NULL;
|
||||
indexstate->biss_RuntimeContext = NULL;
|
||||
/* Get rid of the speculatively-allocated flag array, too */
|
||||
pfree(runtimeKeyInfo);
|
||||
if (runtimeKeyInfo)
|
||||
pfree(runtimeKeyInfo);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user