mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +03:00
- code compile tested, but due to a yet unresolved problem with
parse.h's creation, compile not completed...
21 lines
604 B
C
21 lines
604 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* joininfo.h--
|
|
* prototypes for joininfo.c.
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: joininfo.h,v 1.1 1996/08/28 07:23:14 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef JOININFO_H
|
|
#define JOININFO_H
|
|
|
|
extern JInfo *joininfo_member(List *join_relids, List *joininfo_list);
|
|
extern JInfo *find_joininfo_node(Rel *this_rel, List *join_relids);
|
|
extern Var *other_join_clause_var(Var *var, Expr *clause);
|
|
|
|
#endif /* JOININFO_H */
|