| From: | tgl(at)postgresql(dot)org (Tom Lane) |
|---|---|
| To: | pgsql-committers(at)postgresql(dot)org |
| Subject: | pgsql: Allow USING and INTO clauses of plpgsql's EXECUTE to appear in |
| Date: | 2010-08-19 18:58:04 |
| Message-ID: | 20100819185804.38ED37541DF@cvs.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | 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:
----
REL9_0_STABLE
Modified Files:
--------------
pgsql/src/pl/plpgsql/src:
gram.y (r1.143 -> r1.143.2.1)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpgsql/src/gram.y?r1=1.143&r2=1.143.2.1)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2010-08-19 18:58:11 | pgsql: Allow USING and INTO clauses of plpgsql's EXECUTE to appear in |
| Previous Message | Tom Lane | 2010-08-19 18:57:57 | pgsql: Allow USING and INTO clauses of plpgsql's EXECUTE to appear in |