mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
Extend the ExecInitNode API so that plan nodes receive a set of flag
bits indicating which optional capabilities can actually be exercised at runtime. This will allow Sort and Material nodes, and perhaps later other nodes, to avoid unnecessary overhead in common cases. This commit just adds the infrastructure and arranges to pass the correct flag values down to plan nodes; none of the actual optimizations are here yet. I'm committing this separately in case anyone wants to measure the added overhead. (It should be negligible.) Simon Riggs and Tom Lane
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/executor/nodeLimit.c,v 1.23 2005/11/23 20:27:57 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/executor/nodeLimit.c,v 1.24 2006/02/28 04:10:27 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -280,11 +280,14 @@ recompute_limits(LimitState *node)
|
||||
* ----------------------------------------------------------------
|
||||
*/
|
||||
LimitState *
|
||||
ExecInitLimit(Limit *node, EState *estate)
|
||||
ExecInitLimit(Limit *node, EState *estate, int eflags)
|
||||
{
|
||||
LimitState *limitstate;
|
||||
Plan *outerPlan;
|
||||
|
||||
/* check for unsupported flags */
|
||||
Assert(!(eflags & EXEC_FLAG_MARK));
|
||||
|
||||
/*
|
||||
* create state structure
|
||||
*/
|
||||
@ -321,7 +324,7 @@ ExecInitLimit(Limit *node, EState *estate)
|
||||
* then initialize outer plan
|
||||
*/
|
||||
outerPlan = outerPlan(node);
|
||||
outerPlanState(limitstate) = ExecInitNode(outerPlan, estate);
|
||||
outerPlanState(limitstate) = ExecInitNode(outerPlan, estate, eflags);
|
||||
|
||||
/*
|
||||
* limit nodes do no projections, so initialize projection info for this
|
||||
|
Reference in New Issue
Block a user