postgresql/src/include/optimizer/planner.h

27 lines
607 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* planner.h
* prototypes for planner.c.
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: planner.h,v 1.12 1999/07/15 15:21:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PLANNER_H
#define PLANNER_H
/*
*/
1997-11-26 02:14:33 +01:00
#include "nodes/parsenodes.h"
#include "nodes/plannodes.h"
extern Plan *planner(Query *parse);
1998-02-13 04:46:56 +01:00
extern Plan *union_planner(Query *parse);
extern void pg_checkretval(Oid rettype, List *querytree_list);
#endif /* PLANNER_H */