Re: When and how many times does ExecSetParamPlan executes? - Mailing list pgsql-hackers

From Tom Lane
Subject Re: When and how many times does ExecSetParamPlan executes?
Date
Msg-id 14810.1301078239@sss.pgh.pa.us
Whole thread Raw
In response to When and how many times does ExecSetParamPlan executes?  (Vaibhav Kaushal <vaibhavkaushal123@gmail.com>)
Responses Re: When and how many times does ExecSetParamPlan executes?
List pgsql-hackers
Vaibhav Kaushal <vaibhavkaushal123@gmail.com> writes:
> Hello all, 
> I was going through the Expression Evaluator and was trying to
> understand how the expressions are formed and evaluated. I was informed
> on the IRC channel that the PARAM nodes are quite important and many
> well written client applications use PARAMs for sending query to the
> backend. I found while looking at the ExecEvalParam function that a call
> is made to the ExecSetParamPlan for the first time when the PARAM is
> caught in the ExprState tree.

> I am confused about how many times the call is made to the
> ExecSetParamPlan funtion.

Indeed ... ExecSetParamPlan has nothing at all to do with Params
representing values coming from a client (PARAM_EXTERN parameters).
It's used in connection with PARAM_EXEC parameters that represent
the outputs of InitPlan subplans (that is, execute-only-once subplans).
        regards, tom lane


pgsql-hackers by date:

Previous
From: Robert Haas
Date:
Subject: Re: 2nd Level Buffer Cache
Next
From: Tom Lane
Date:
Subject: Re: Transactional DDL, but not Serializable