Re: NEW and OLD in EXECUTE - Mailing list pgsql-hackers

From Tom Lane
Subject Re: NEW and OLD in EXECUTE
Date
Msg-id 12061.982109446@sss.pgh.pa.us
Whole thread Raw
In response to NEW and OLD in EXECUTE  ("Rod Taylor" <rod.taylor@inquent.com>)
List pgsql-hackers
"Rod Taylor" <rod.taylor@inquent.com> writes:
> Are we not allowed to use NEW and OLD in an EXECUTEd statement?

Not for 7.1, I'm afraid.  EXECUTE doesn't provide *any* connection
to the plpgsql function's local namespace; it just hands off the
constructed string to the main SQL parser.

In most cases you can work around this by interpolating the variable's
value into the constructed string, eg,
execute ''update foo set bar = '' || new.bar;

Use quote_literal() when interpolating a nonnumeric value this way.

I do have some ideas about improving the situation in 7.2 or later ...
        regards, tom lane


pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: locale support
Next
From: Ryan Kirkpatrick
Date:
Subject: RE: Recovery of PGSQL after system crash failing!!!