mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +03:00
Subselects...
This commit is contained in:
20
src/include/optimizer/subselect.h
Normal file
20
src/include/optimizer/subselect.h
Normal file
@@ -0,0 +1,20 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* 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 */
|
||||
Reference in New Issue
Block a user