pgsql: Allow USING and INTO clauses of plpgsql's EXECUTE to appear in - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Allow USING and INTO clauses of plpgsql's EXECUTE to appear in
Date
Msg-id 20100819185811.916E17541DF@cvs.postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Allow USING and INTO clauses of plpgsql's EXECUTE to appear in either order.

Aside from being more forgiving, this prevents a rather surprising misbehavior
when the "wrong" order was used: the old code didn't throw a syntax error,
but absorbed the INTO clause into the last USING expression, which then did
strange things downstream.

Intentionally not changing the documentation; we'll continue to advertise
only the "standard" clause order.

Backpatch to 8.4, where the USING clause was added to EXECUTE.

Tags:
----
REL8_4_STABLE

Modified Files:
--------------
    pgsql/src/pl/plpgsql/src:
        gram.y (r1.125 -> r1.125.2.1)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpgsql/src/gram.y?r1=1.125&r2=1.125.2.1)

pgsql-committers by date:

Previous
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Allow USING and INTO clauses of plpgsql's EXECUTE to appear in
Next
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Bring some sanity to the trace_recovery_messages code and docs.