mirror of
https://github.com/postgres/postgres.git
synced 2026-02-23 01:40:33 -05:00
making pull_up_sublinks() construct a full-blown JoinExpr tree representation of IN/EXISTS SubLinks that it is able to convert to semi or anti joins. This makes pull_up_sublinks() a shade more complex, but the gain in semantic clarity is worth it. I still have more to do in this area to address the previously-discussed problems, but this commit in itself fixes at least one bug in HEAD, as shown by added regression test case.
34 lines
1.3 KiB
C
34 lines
1.3 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* subselect.h
|
|
*
|
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/optimizer/subselect.h,v 1.36 2009/02/25 03:30:38 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef SUBSELECT_H
|
|
#define SUBSELECT_H
|
|
|
|
#include "nodes/plannodes.h"
|
|
#include "nodes/relation.h"
|
|
|
|
extern void SS_process_ctes(PlannerInfo *root);
|
|
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);
|
|
extern Node *SS_replace_correlation_vars(PlannerInfo *root, Node *expr);
|
|
extern Node *SS_process_sublinks(PlannerInfo *root, Node *expr, bool isQual);
|
|
extern void SS_finalize_plan(PlannerInfo *root, Plan *plan,
|
|
bool attach_initplans);
|
|
extern Param *SS_make_initplan_from_plan(PlannerInfo *root, Plan *plan,
|
|
Oid resulttype, int32 resulttypmod);
|
|
extern int SS_assign_worktable_param(PlannerInfo *root);
|
|
|
|
#endif /* SUBSELECT_H */
|