1998-02-12 22:46:56 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1999-02-13 18:22:53 -05:00
|
|
|
* subselect.h
|
1998-02-12 22:46:56 -05:00
|
|
|
*
|
2006-03-05 10:59:11 -05:00
|
|
|
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
|
2003-01-20 13:55:07 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2006-03-05 10:59:11 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/optimizer/subselect.h,v 1.27 2006/03/05 15:58:57 momjian Exp $
|
2003-01-20 13:55:07 -05:00
|
|
|
*
|
1998-02-12 22:46:56 -05:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef SUBSELECT_H
|
|
|
|
|
#define SUBSELECT_H
|
|
|
|
|
|
1999-07-13 21:20:30 -04:00
|
|
|
#include "nodes/plannodes.h"
|
2005-06-05 18:32:58 -04:00
|
|
|
#include "nodes/relation.h"
|
|
|
|
|
|
1999-07-13 21:20:30 -04:00
|
|
|
|
2000-04-12 13:17:23 -04:00
|
|
|
extern Index PlannerQueryLevel; /* level of current query */
|
1998-02-25 23:46:47 -05:00
|
|
|
extern List *PlannerInitPlan; /* init subplans for current query */
|
2003-06-06 11:04:03 -04:00
|
|
|
extern List *PlannerParamList; /* to keep track of cross-level Params */
|
1999-06-20 21:20:57 -04:00
|
|
|
extern int PlannerPlanId; /* to assign unique ID to subquery plans */
|
1998-02-12 22:46:56 -05:00
|
|
|
|
2005-06-05 18:32:58 -04:00
|
|
|
extern Node *convert_IN_to_join(PlannerInfo *root, SubLink *sublink);
|
1998-02-25 23:46:47 -05:00
|
|
|
extern Node *SS_replace_correlation_vars(Node *expr);
|
2003-01-13 13:10:53 -05:00
|
|
|
extern Node *SS_process_sublinks(Node *expr, bool isQual);
|
2003-02-08 19:30:41 -05:00
|
|
|
extern void SS_finalize_plan(Plan *plan, List *rtable);
|
2005-06-05 18:32:58 -04:00
|
|
|
extern Param *SS_make_initplan_from_plan(PlannerInfo *root, Plan *plan,
|
2005-10-14 22:49:52 -04:00
|
|
|
Oid resulttype, int32 resulttypmod);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* SUBSELECT_H */
|