mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +03:00
Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ...
31 lines
940 B
C
31 lines
940 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* joininfo.h
|
|
* prototypes for joininfo.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/joininfo.h,v 1.28 2004/12/31 22:03:36 pgsql Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef JOININFO_H
|
|
#define JOININFO_H
|
|
|
|
#include "nodes/relation.h"
|
|
|
|
|
|
extern JoinInfo *find_joininfo_node(RelOptInfo *this_rel, Relids join_relids);
|
|
extern JoinInfo *make_joininfo_node(RelOptInfo *this_rel, Relids join_relids);
|
|
|
|
extern void add_join_clause_to_rels(Query *root,
|
|
RestrictInfo *restrictinfo,
|
|
Relids join_relids);
|
|
extern void remove_join_clause_from_rels(Query *root,
|
|
RestrictInfo *restrictinfo,
|
|
Relids join_relids);
|
|
|
|
#endif /* JOININFO_H */
|