mirror of
https://github.com/postgres/postgres.git
synced 2026-02-20 16:30:40 -05:00
propagated inside an outer join. In particular, given LEFT JOIN ON (A = B) WHERE A = constant, we cannot conclude that B = constant at the top level (B might be null instead), but we can nonetheless put a restriction B = constant into the quals for B's relation, since no inner-side rows not meeting that condition can contribute to the final result. Similarly, given FULL JOIN USING (J) WHERE J = constant, we can't directly conclude that either input J variable = constant, but it's OK to push such quals into each input rel. Per recent gripe from Kim Bisgaard. Along the way, remove 'valid_everywhere' flag from RestrictInfo, as on closer analysis it was not being used for anything, and was defined backwards anyway.
37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* restrictinfo.h
|
|
* prototypes for restrictinfo.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/optimizer/restrictinfo.h,v 1.32 2005/07/02 23:00:42 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef RESTRICTINFO_H
|
|
#define RESTRICTINFO_H
|
|
|
|
#include "nodes/relation.h"
|
|
|
|
|
|
extern RestrictInfo *make_restrictinfo(Expr *clause,
|
|
bool is_pushed_down,
|
|
Relids required_relids);
|
|
extern List *make_restrictinfo_from_bitmapqual(Path *bitmapqual,
|
|
bool is_pushed_down);
|
|
extern bool restriction_is_or_clause(RestrictInfo *restrictinfo);
|
|
extern List *get_actual_clauses(List *restrictinfo_list);
|
|
extern void get_actual_join_clauses(List *restrictinfo_list,
|
|
List **joinquals, List **otherquals);
|
|
extern List *remove_redundant_join_clauses(PlannerInfo *root,
|
|
List *restrictinfo_list,
|
|
bool isouterjoin);
|
|
extern List *select_nonredundant_join_clauses(PlannerInfo *root,
|
|
List *restrictinfo_list,
|
|
List *reference_list,
|
|
bool isouterjoin);
|
|
|
|
#endif /* RESTRICTINFO_H */
|