diff options
Diffstat (limited to 'src/include/optimizer/subselect.h')
| -rw-r--r-- | src/include/optimizer/subselect.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/optimizer/subselect.h b/src/include/optimizer/subselect.h index 8fead9929f..2e6a464068 100644 --- a/src/include/optimizer/subselect.h +++ b/src/include/optimizer/subselect.h @@ -2,6 +2,11 @@ * * subselect.h * + * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California + * + * $Id: subselect.h,v 1.17 2003/01/20 18:55:05 tgl Exp $ + * *------------------------------------------------------------------------- */ #ifndef SUBSELECT_H @@ -14,8 +19,9 @@ extern List *PlannerInitPlan; /* init subplans for current query */ extern List *PlannerParamVar; /* to get Var from Param->paramid */ extern int PlannerPlanId; /* to assign unique ID to subquery plans */ -extern List *SS_finalize_plan(Plan *plan, List *rtable); +extern Node *convert_IN_to_join(Query *parse, SubLink *sublink); extern Node *SS_replace_correlation_vars(Node *expr); extern Node *SS_process_sublinks(Node *expr, bool isQual); +extern List *SS_finalize_plan(Plan *plan, List *rtable); #endif /* SUBSELECT_H */ |
