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/prep/prepunion.c | |
parent | c82ca4c15828abdecf0ec5343d7f39b4f3a475f9 (diff) | |
download | postgresql-31cce21fb089b231bc408bc6e4541280c533b43f.tar.gz postgresql-31cce21fb089b231bc408bc6e4541280c533b43f.zip |
Fix bushy plans. Cleanup.
Diffstat (limited to 'src/backend/optimizer/prep/prepunion.c')
-rw-r--r-- | src/backend/optimizer/prep/prepunion.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/optimizer/prep/prepunion.c b/src/backend/optimizer/prep/prepunion.c index b8b8a606656..1bbfa9ef06a 100644 --- a/src/backend/optimizer/prep/prepunion.c +++ b/src/backend/optimizer/prep/prepunion.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/prepunion.c,v 1.29 1999/02/13 23:16:40 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/prepunion.c,v 1.30 1999/02/18 00:49:32 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -34,7 +34,7 @@ #include "optimizer/planner.h" #include "optimizer/planmain.h" -static List *plan_inherit_query(List *relids, Index rt_index, +static List *plan_inherit_query(Relids relids, Index rt_index, RangeTblEntry *rt_entry, Query *parse, List **union_rtentriesPtr); static RangeTblEntry *new_rangetable_entry(Oid new_relid, @@ -248,7 +248,7 @@ plan_inherit_queries(Query *parse, Index rt_index) * in union_rtentries. */ static List * -plan_inherit_query(List *relids, +plan_inherit_query(Relids relids, Index rt_index, RangeTblEntry *rt_entry, Query *root, @@ -301,8 +301,8 @@ plan_inherit_query(List *relids, * lists. */ List * -find_all_inheritors(List *unexamined_relids, - List *examined_relids) +find_all_inheritors(Relids unexamined_relids, + Relids examined_relids) { List *new_inheritors = NIL; List *new_examined_relids = NIL; |