diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-18 00:49:48 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-18 00:49:48 +0000 |
commit | 31cce21fb089b231bc408bc6e4541280c533b43f (patch) | |
tree | 749ef32f2f6ba4311393c34702eec63e4700bef3 /src/backend/optimizer/path/indxpath.c | |
parent | c82ca4c15828abdecf0ec5343d7f39b4f3a475f9 (diff) | |
download | postgresql-31cce21fb089b231bc408bc6e4541280c533b43f.tar.gz postgresql-31cce21fb089b231bc408bc6e4541280c533b43f.zip |
Fix bushy plans. Cleanup.
Diffstat (limited to 'src/backend/optimizer/path/indxpath.c')
-rw-r--r-- | src/backend/optimizer/path/indxpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c index ff8040b4627..630e125c31b 100644 --- a/src/backend/optimizer/path/indxpath.c +++ b/src/backend/optimizer/path/indxpath.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.50 1999/02/15 05:50:00 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.51 1999/02/18 00:49:18 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1208,7 +1208,7 @@ indexable_joinclauses(RelOptInfo *rel, RelOptInfo *index, { List *clauses = lfirst(clausegroups); - ((RestrictInfo *) lfirst(clauses))->restrictinfojoinid = joininfo->unjoined_rels; + ((RestrictInfo *) lfirst(clauses))->restrictinfojoinid = joininfo->unjoined_relids; } cg_list = nconc(cg_list, clausegroups); } |