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
|
|
|
*
|
2009-01-01 12:24:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
2003-01-20 13:55:07 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2009-02-24 22:30:38 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/optimizer/subselect.h,v 1.36 2009/02/25 03:30:38 tgl 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"
|
|
|
|
|
|
2008-10-04 17:56:55 -04:00
|
|
|
extern void SS_process_ctes(PlannerInfo *root);
|
2009-02-24 22:30:38 -05:00
|
|
|
extern JoinExpr *convert_ANY_sublink_to_join(PlannerInfo *root,
|
|
|
|
|
SubLink *sublink,
|
|
|
|
|
Relids available_rels);
|
|
|
|
|
extern JoinExpr *convert_EXISTS_sublink_to_join(PlannerInfo *root,
|
|
|
|
|
SubLink *sublink,
|
|
|
|
|
bool under_not,
|
|
|
|
|
Relids available_rels);
|
2007-02-19 02:03:34 -05:00
|
|
|
extern Node *SS_replace_correlation_vars(PlannerInfo *root, Node *expr);
|
|
|
|
|
extern Node *SS_process_sublinks(PlannerInfo *root, Node *expr, bool isQual);
|
2008-07-09 22:14:03 -04:00
|
|
|
extern void SS_finalize_plan(PlannerInfo *root, Plan *plan,
|
|
|
|
|
bool attach_initplans);
|
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);
|
2008-10-04 17:56:55 -04:00
|
|
|
extern int SS_assign_worktable_param(PlannerInfo *root);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* SUBSELECT_H */
|