mirror of
https://github.com/postgres/postgres.git
synced 2026-02-20 08:20:55 -05:00
21 lines
595 B
C
21 lines
595 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* joininfo.h
|
|
* prototypes for joininfo.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: joininfo.h,v 1.20 2001/11/05 17:46:34 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef JOININFO_H
|
|
#define JOININFO_H
|
|
|
|
#include "nodes/relation.h"
|
|
|
|
extern JoinInfo *find_joininfo_node(RelOptInfo *this_rel, List *join_relids);
|
|
|
|
#endif /* JOININFO_H */
|