mirror of
https://github.com/postgres/postgres.git
synced 2025-04-29 13:56:47 +03:00
running gcc and HP's cc with warnings cranked way up. Signed vs unsigned comparisons, routines declared static and then defined not-static, that kind of thing. Tedious, but perhaps useful...
23 lines
728 B
C
23 lines
728 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* subselect.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef SUBSELECT_H
|
|
#define SUBSELECT_H
|
|
|
|
#include "nodes/plannodes.h"
|
|
|
|
extern Index PlannerQueryLevel; /* level of current query */
|
|
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);
|
|
extern Node *SS_replace_correlation_vars(Node *expr);
|
|
extern Node *SS_process_sublinks(Node *expr);
|
|
extern List *SS_pull_subplan(Node *expr);
|
|
|
|
#endif /* SUBSELECT_H */
|