mirror of
https://github.com/postgres/postgres.git
synced 2026-04-08 10:38:53 -04:00
27 lines
739 B
C
27 lines
739 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* planner.h
|
|
* prototypes for planner.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: planner.h,v 1.24 2002/06/20 20:29:51 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PLANNER_H
|
|
#define PLANNER_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
#include "nodes/plannodes.h"
|
|
|
|
|
|
extern Plan *planner(Query *parse);
|
|
extern Plan *subquery_planner(Query *parse, double tuple_fraction);
|
|
|
|
extern Plan *make_sortplan(Query *parse, List *tlist,
|
|
Plan *plannode, List *sortcls);
|
|
|
|
#endif /* PLANNER_H */
|