mirror of
https://github.com/postgres/postgres.git
synced 2026-03-18 08:33:45 -04:00
access to the planner's cursor-related planning options, and provide new FETCH/MOVE routines that allow access to the full power of those commands. Small refactoring of planner(), pg_plan_query(), and pg_plan_queries() APIs to make it convenient to pass the planning options down from SPI. This is the core-code portion of Pavel Stehule's patch for scrollable cursor support in plpgsql; I'll review and apply the plpgsql changes separately.
27 lines
807 B
C
27 lines
807 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* planner.h
|
|
* prototypes for planner.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/optimizer/planner.h,v 1.39 2007/04/16 01:14:58 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PLANNER_H
|
|
#define PLANNER_H
|
|
|
|
#include "nodes/plannodes.h"
|
|
#include "nodes/relation.h"
|
|
|
|
|
|
extern PlannedStmt *planner(Query *parse, int cursorOptions,
|
|
ParamListInfo boundParams);
|
|
extern Plan *subquery_planner(PlannerGlobal *glob, Query *parse,
|
|
Index level, double tuple_fraction,
|
|
PlannerInfo **subroot);
|
|
|
|
#endif /* PLANNER_H */
|