diff options
Diffstat (limited to 'src/backend/optimizer/path/joinpath.c')
-rw-r--r-- | src/backend/optimizer/path/joinpath.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/optimizer/path/joinpath.c b/src/backend/optimizer/path/joinpath.c index 3577ebfda26..8a62c44b855 100644 --- a/src/backend/optimizer/path/joinpath.c +++ b/src/backend/optimizer/path/joinpath.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/joinpath.c,v 1.27 1999/02/15 03:22:05 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/joinpath.c,v 1.28 1999/02/18 00:49:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -71,8 +71,8 @@ update_rels_pathlist_for_joins(Query *root, List *joinrels) foreach(j, joinrels) { RelOptInfo *joinrel = (RelOptInfo *) lfirst(j); - List *innerrelids; - List *outerrelids; + Relids innerrelids; + Relids outerrelids; RelOptInfo *innerrel; RelOptInfo *outerrel; Path *bestinnerjoin; @@ -163,7 +163,7 @@ update_rels_pathlist_for_joins(Query *root, List *joinrels) * Returns the pathnode of the selected path. */ static Path * -best_innerjoin(List *join_paths, List *outer_relids) +best_innerjoin(List *join_paths, Relids outer_relids) { Path *cheapest = (Path *) NULL; List *join_path; |