mirror of
https://github.com/postgres/postgres.git
synced 2026-02-16 09:08:23 -05:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
22 lines
648 B
C
22 lines
648 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* joininfo.h
|
|
* prototypes for joininfo.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: joininfo.h,v 1.15 2000/01/26 05:58:20 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef JOININFO_H
|
|
#define JOININFO_H
|
|
|
|
#include "nodes/relation.h"
|
|
|
|
extern JoinInfo *joininfo_member(List *join_relids, List *joininfo_list);
|
|
extern JoinInfo *find_joininfo_node(RelOptInfo *this_rel, List *join_relids);
|
|
|
|
#endif /* JOININFO_H */
|