diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-04-22 21:58:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-04-22 21:58:32 +0000 |
commit | bc843d396032acb75abfbcfab1a0c3b0b252c3f1 (patch) | |
tree | 1c5f8401d96790fc45c810f7e19eba1c1d61ba79 /src/backend/optimizer/util/plancat.c | |
parent | ccbb07d92229a3ebdfbb129aafaba99a22658403 (diff) |
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.
Diffstat (limited to 'src/backend/optimizer/util/plancat.c')
-rw-r--r-- | src/backend/optimizer/util/plancat.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/optimizer/util/plancat.c b/src/backend/optimizer/util/plancat.c index b908f320a5f..8c9b34f0fe7 100644 --- a/src/backend/optimizer/util/plancat.c +++ b/src/backend/optimizer/util/plancat.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/util/plancat.c,v 1.105 2005/04/14 20:03:24 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/util/plancat.c,v 1.106 2005/04/22 21:58:31 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -194,10 +194,6 @@ get_relation_info(Oid relationObjectId, RelOptInfo *rel) info->tuples = rel->tuples; } - /* initialize cached join info to empty */ - info->outer_relids = NULL; - info->inner_paths = NIL; - index_close(indexRelation); indexinfos = lcons(info, indexinfos); |