mirror of
https://github.com/postgres/postgres.git
synced 2026-02-23 18:04:41 -05:00
20 lines
731 B
C
20 lines
731 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* subselect.h--
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef SUBSELECT_H
|
|
#define SUBSELECT_H
|
|
|
|
extern int PlannerQueryLevel; /* level of current query */
|
|
extern List *PlannerVarParam; /* correlation Vars to Param mapper */
|
|
extern List *PlannerParamVar; /* to get Var from Param->paramid */
|
|
extern List *PlannerInitPlan; /* init subplans for current query */
|
|
extern int PlannerPlanId; /* to assigne unique ID to subquery plans */
|
|
|
|
extern List *SS_finalize_plan(Plan *plan);
|
|
extern Node *SS_replace_correlation_vars(Node *expr);
|
|
extern Node *SS_process_sublinks(Node *expr);
|
|
|
|
#endif /* SUBSELECT_H */
|