]> granicus.if.org Git - postgresql/commit
Fix a few bogus statement type names in plpgsql error messages.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 18 Aug 2015 23:22:37 +0000 (19:22 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 18 Aug 2015 23:22:37 +0000 (19:22 -0400)
commit2edb9491155ad70e57b5d18f2aa0d8d5a09386cd
tree1f28b406ada01e6614df4059d46e5957aa20c1d8
parentdb5a703bf69d6302d0d515a9068baebffd2d227e
Fix a few bogus statement type names in plpgsql error messages.

plpgsql's error location context messages ("PL/pgSQL function fn-name line
line-no at stmt-type") would misreport a CONTINUE statement as being an
EXIT, and misreport a MOVE statement as being a FETCH.  These are clear
bugs that have been there a long time, so back-patch to all supported
branches.

In addition, in 9.5 and HEAD, change the description of EXECUTE from
"EXECUTE statement" to just plain EXECUTE; there seems no good reason why
this statement type should be described differently from others that have
a well-defined head keyword.  And distinguish GET STACKED DIAGNOSTICS from
plain GET DIAGNOSTICS.  These are a bit more of a judgment call, and also
affect existing regression-test outputs, so I did not back-patch into
stable branches.

Pavel Stehule and Tom Lane
src/pl/plpgsql/src/pl_funcs.c
src/test/regress/expected/event_trigger.out
src/test/regress/expected/plpgsql.out
src/test/regress/expected/triggers.out